body {
    margin: 0;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.grid {
    display: grid;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    grid-template-areas: 'menu logo''text text''customers customers''images images''contact contact''footer footer';
    min-height: 100vh;
    max-width: auto;
    margin: 0 auto;
}

.logo {
    background-color: white;
    grid-area: logo;
    position: fixed;
    text-align: right;
    z-index: 100;
}
.text {
    background-color: rgb(190, 219, 252);
    grid-area: text;
    position: relative;
    text-align: center;
    padding-top: 100px;

}
.customers {
    display: flex;
    background-color: rgb(190, 219, 252);
    grid-area: customers;
    position: relative;
    text-align: center;
    align-items: center;
    justify-content: center;
    th {
        width: 200px;
    }
}

.menu {
    display: inline-flex;
    background-color: white;
    grid-area: menu;
    position: fixed;
    align-items: center;
    z-index: 100;
    width: 100%;
    img {
        width: 50%;
        display: inline;
    }
    
        
     ul {
        list-style: none;
        li {
            display: inline-flex;
            text-align: center;
            padding-left: 0px;
            align-items: start;
            justify-content: center;
        }
     a {
        display: inline-flex;
        border: 1px solid rgb(54, 70, 83);
        color: rgb(54, 70, 83);
        font-weight: bold;
        font-size: 20px;
        text-decoration: none;
        padding: 10px;
        margin: 10px;

     }
     a:hover {
        border-color: rgb(127, 190, 190);
        color: rgb(127, 190, 190);
        font-weight: bold;
        font-size: 20px;
      }
     }
}

.gallery {
    background-color: rgb(190, 219, 252);
    grid-area: images;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(1fr, 1fr));
    gap: 15px;
    position: relative;
    padding: 15px 15px 15px;
    text-align: center;
    padding-top: 5rem;
}

.gallery img {
    width: 70%;
}

.contact {
    height: auto;
    grid-area: contact;
    background-color: white;
    text-align: center;
    gap: 15px;
}

.footer {
    height: 50px;
    grid-area: footer;
    background-color: white;
    text-align: start;
}

  @media only screen and (min-width:320px) and (max-width:580px) {
 
    .text {
        font-size: 10px;
        padding-top: 50px;
    }
    .customers {
        font-size: 10px;
    }
    .contact {
        font-size: 10px;
    }
    .footer {
        font-size: 10px;
    }
    .gallery {
      width: auto;
      gap: 2px;
      padding: 5px 5px 5px;
    }
    .menu {
        position: fixed;
        display: inline-block;
        width: 100%;
        img {
            max-width: 70%;
            max-height: 70%;
           
           }
              
     ul {
        list-style: none;
        li {
            display: inline-block;
            text-align: center;
        }
     a {
        display: inline-block;
        border: 1px solid rgb(54, 70, 83);
        color: rgb(54, 70, 83);
        font-weight: bold;
        font-size: 10px;
        text-decoration: none;
        padding: 5px;
        margin: 5px;

     }
     a:hover {
        border-color: rgb(127, 190, 190);
        color: rgb(127, 190, 190);
        font-weight: bold;
        font-size: 10px;
      }
     }
    }
  }