@charset "utf-8";
/* CSS Document */

   body, html {
      margin: 0;
      padding: 0;
      height: 100%;
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, "sans-serif";
      letter-spacing: 1px;
	  background-image: url("../img/mainBg.jpg");
	  background-size:cover;
		background-position: center;
    }
    .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      background: linear-gradient(to top, rgba(0,0,0,0.1), rgba(0,0,0,0));
    }
    .main-logo {
      margin-bottom: 30px;
      max-width: 100%;
      height: auto;
	  width: 500px;
    }
    .small-logos {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .small-logo {
      margin: 20px;
      max-width: 150px; /* Adjust as needed */
      height: auto;
    }
    .footer {
      position: fixed;
      left: 0;
      bottom: 0;
      width: 100%;
      font-size: 12px;
      font-weight: normal;
      color: #7f7f7f;
      text-align: center;
      padding: 10px 0;
    }
    .footer a {
      color: #00b0a6;
      text-decoration: none;
    }

    @media screen and (max-width: 768px) {
      .main-logo {
        max-width: 80%;
      }
      .small-logo {
        max-width: 150px; /* Adjust as needed */
      }
    }