@font-face {    
    src: url(https://fonts.googleapis.com/css2?family=Alata&display=swap);
    font-family:'Alata', sans-serif;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
}

body, html {
    font-family: 'Alata', sans-serif;
    background: #E8E8E7;
}

.logo {
    flex: 1;
    display: flex;
}


.logo img {
    width: 250px;
}

nav .logo img {
    width: 250px;
}

nav {
    position: fixed;
    top:0;
    z-index: 9999;
    width: 100%;    
    background: linear-gradient(to right,#000000, #624747);
    display: flex;
    align-items: center;      
        
}

nav a {
    color: #FFFFFF;
   
}

.menu {
    display: flex;
    align-items: center;
    padding: 15px 10px;
}

.menu li {
    padding: 15px 10px;
    font-size: 16px;
}

.toggle {
    font-size: 30px;
    display: none;
}


nav  li a {
    
    display:block;
    margin: 0 15px;
    margin-top: 5px;
    padding: 10px 20px;
    transition: 0.2s;
    border-radius: 30px;
    text-decoration: none;    
    font-weight: bold;
}

.navbar-action {    
    font-size: 15px;
    background-color: #FFFFFF;
    color: #463333;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    width: auto;
    margin-left: 100px;
  }

nav ul li a:hover {
    color: #806262;
}

.navbar-action:hover {
    background-color: #806262;
    color:#463333 ;
}

nav ul li a.active {
    color: #bdbdbd;
}

.whole-about {
    position: relative;
    font-size: 1.2em;
    display: flex;
    flex-wrap: wrap; /* Allow items to wrap */
    justify-content: center; /* Center children */
    align-items: flex-start;
    margin: 0px auto; /* Reduced margin */
    max-width: 1200px; /* More reasonable max-width */
}

.about-left {
    display: flex;
    flex-direction: column;
    position: relative;
    flex:1;
}

.about-logo img  {
    position: relative;
    margin-top: 100px;
    margin-left: -50px;
    width: 250px;
}

.crew-pic img {
    position: relative;
    width: 550px;
    margin-bottom: -5px;
    
}

.thumbtack img {
    left: 85%;
    top: 8%;
    position: absolute;
    width: 50px;
}

.medals img {
    width: 580px;
    display: block;
    margin: auto;
    height: auto;
}

.container-all {
    background-color: #463333;
    color: white;
    max-width: 91.8%;
    height: 150px;
    font-size: 1.2em;
    border-radius: 0px 0px 5px 5px;
}

.about-functional {
    margin: 20px;
}

.about-functional h2 {
    position: relative;
    font-size: 1.3em;
}

.about-functional p {
    font-weight: lighter;
}

.about-right {
    display: flex;
    flex-direction: column;
    position: relative;
    margin-top: 100px;
    margin-left: 0px;
    max-width: 600px;
}

.company-description h1 {
    color: #463333;
    margin-bottom: 30px;
    text-align: justify;
}

.company-description p {
    text-align: justify;
}

.years h1 {
    color: #463333;
    margin-bottom: 30px;
    text-align: justify;
}

.years p {
    text-align: justify;
}

.separator {
    border-style: solid;
    border-width: 2px;
    border-color: #84817ab7;
    margin-top: 5vh;
    min-width: 60%;
}

.reviews h1 {
    color: #463333;
    margin-bottom: 30px;
    text-align: center;
}

.reviews p {
    text-align: center;
    font-size: 1.2em;
}

.parent-container { 
    display: flex;
    justify-content: center; 
    align-items: center;
    text-align: center;
    font-size: 1.0em;
    width: 100%;
    padding: 20px;
}

.parent-container img {
    max-width: 150px;
    margin-bottom: 10px;
    margin-top: 10px;
}

.white-box1 {
    display:flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    margin-top: 40px;
    margin-left: 290px;
    margin-right: 30px;
    max-width: 600px;
    min-height: 350px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.child1 h2 {
    color: #84817ab7;
}

.child1 h1 {
    color: #463333;
    font-size: 1.7em;
    margin-bottom: 10px;
}

.child1 p {
    padding: 45px;
    padding-top: 0px;
    padding-bottom: 20px;
    font-size: 1.2em;
}

.white-box2 {
    display:flex;
    flex-direction: column;
    background-color: rgb(255, 255, 255);
    color: rgb(0, 0, 0);
    margin-top: 40px;
    margin-right: 290px;
    margin-left: 30px;
    max-width: 600px;
    min-height: 350px;
    text-align: center;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.child2 h2 {
    color: #84817ab7;
}

.child2 h1 {
    color: #463333;
    font-size: 1.7em;
    margin-bottom: 10px;
}

.child2 p {
    padding: 45px;
    padding-top: 0px;
    padding-bottom: 20px;
    font-size: 1.2em;
}

.footer-container {
    background: linear-gradient(to right, #000000, #624747);
    color: white;
    font-size: 0.8em;
    align-items: center;
    position: relative;
    width: 100%;
    height: auto;
    top: 70px;

   }

   .whole-thing {
    display: flex;
    flex-wrap: wrap;
    gap: 10px; /* Add some space between elements */
    width: 100%; 
    position: relative;
    justify-content: center;
    top: -20px;
  }

    .footer-section {
      position: relative;
      left: 200px;
      top: -35px;
      flex-basis: 5%; /* Adjust as necessary */
      min-width: 150px; /* Prevents the sections from becoming too narrow on small screens */
    }
  
    .footer-section h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      top: 70px;
      right: 70%;
      width: 100%;
       
    }
  
    .footer-links h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: 35%;
      top: 70px;
    }
  
    .footer-services h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: 70%;
      top: 70px;
    }
  
    .footer-contact h3 { /* Corrected class selector */
      color: #F8D210; /* Gold color for headings */
      position: relative;
      left: 150%;
      justify-content: center; /* Center the images within the container */
      top: 70px;
    }
  
     .footer-links a {
      position: relative;
      left: 35%;
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      top: 70px;
     
    }
  
  .footer-section p {
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      text-align: justify;
      position: relative;
      right: 70%;
      width: 100%;
      top: 90px;
  }
  
    .footer-section a {
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      text-align: justify;
      top: 90px;
  }
  
  .footer-services a  {
    position: relative;
      left: 70%;
      color: white;
      text-decoration: none;
      display: block; /* To list down links */
      margin-bottom: 5px;
      text-align: left;
  }
  
  
    .footer-links a:hover, .footer-services a:hover {
      text-decoration: underline;
    }
  
    .logo-footer img {
      position: relative;
      align-items:left;
      left: 450px;
      top: 40px;
      max-width: 300px; /* Prevents the sections from becoming too narrow on small screens */
      
          }
     
    .contact-icons img {
     position: relative;
      right: 0px;
      top: 200px;
      gap: 10px; 
      width: 70px;
      
    }
   
    .footer-contact p {
      text-align: justify;
      margin-bottom: 20px;
      position: relative;
      left: 150%;
      justify-content: center
    }
  
    .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 4vh;
        top: 50px;
      
    }

.credit p {
    color: white;
    opacity: 0.7;
}
  
    .designed {
    position: relative;
    justify-content: center;
    align-items: center;
    opacity: 0.7;    
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 0px
    }

@media screen and (max-width: 1248px) {
    nav{
        display: block;
        position: relative;
        padding: 15px 20px;
     
    }

    .menu{
        margin-top: 15px;
        display: none;
    }

    .menu.active, .toggle {
        display: block;        
    }

    .toggle {
        position: absolute;
        top:15px;
        right: 20px;
    }

    .toggle:hover {
        background-color: #DAB36A;
        border-radius: 5px;
        transition: 0.5s;
    }

    .navbar-action {
        margin-top: 15px;
        flex: 1;
     
    }

    a.navbar-action {
       width:fit-content;
       right: 73px ;
       position: relative;
}


    .whole-about {
        position: relative;
        font-size: 1.2em;
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: center; /* Center children */
        align-items: flex-start;
        margin: 50px auto; /* Reduced margin */
        max-width: 1500px; /* More reasonable max-width */
    }

    .about-left {
        display: flex;
        flex-direction: column;
        position: relative;
        flex:1;
    }

    .about-logo img  {
        position: relative;
        margin-top: 0px;
        margin-left: -50px;
        width: 250px;
    }

    .crew-pic img {
        position: relative;
        width: 400px;
        margin-bottom: -5px;
        
    }

    .thumbtack img {
        left: 85%;
        top: 8%;
        position: absolute;
        width: 50px;
    }

    .medals img {
        width: 280px;
        display: block;
        margin: auto;
    }

    .container-all {
        background-color: #463333;
        color: white;
        max-width: 82.7%;
        height: 110px;
        font-size: 1.0em;
        border-radius: 0px 0px 5px 5px;
    }

    .about-functional {
        margin: 10px;
    }

    .about-functional h2 {
        position: relative;
        font-size: 1.3em;
    }

    .about-functional p {
        font-weight: lighter;
    }

    .about-right {
        display: flex;
        flex-direction: column;
        position: relative;
        margin-top: 0px;
        margin-left: 15px;
        margin-right: 10px;
        max-width: 500px;
        font-size: 0.75em;
    }

    .company-description h1 {
        color: #463333;
        margin-bottom: 30px;
        text-align: justify;
    }

    .company-description p {
        text-align: justify;
    }

    .years h1 {
        color: #463333;
        margin-bottom: 30px;
        text-align: justify;
    }

    .years p {
        text-align: justify;
    }

    .separator {
        border-style: solid;
        border-width: 2px;
        border-color: #84817ab7;
        margin-top: 5vh;
        min-width: 60%;
    }

    .reviews {
        font-size: 0.75em;
    }

    .reviews h1 {
        color: #463333;
        margin-bottom: 30px;
        text-align: center;
    }

    .reviews p {
        text-align: center;
        font-size: 1.2em;
    }

    .parent-container { 
        display: flex;
        justify-content: center; 
        align-items: center;
        text-align: center;
        font-size: 1.0em;
        width: 100%;
        padding: 20px;
    }

    .parent-container img {
        max-width: 150px;
        margin-bottom: 10px;
        margin-top: 10px;
    }

    .white-box1 {
        display:flex;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        margin-top: 10px;
        margin-left: 100px;
        margin-right: 30px;
        max-width: 800px;
        font-size: 0.75em;
        text-align: center;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .child1 h2 {
        color: #84817ab7;
    }

    .child1 h1 {
        color: #463333;
        font-size: 1.7em;
        margin-bottom: 10px;
    }

    .child1 p {
        padding: 45px;
        padding-top: 0px;
        padding-bottom: 20px;
        font-size: 1.2em;
    }

    .white-box2 {
        display:flex;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        margin-top: 10px;
        margin-left: 100px;
        margin-right: 30px;
        max-width: 800px;
        font-size: 0.75em;
        text-align: center;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .child2 h2 {
        color: #84817ab7;
    }

    .child2 h1 {
        color: #463333;
        font-size: 1.7em;
        margin-bottom: 10px;
    }

    .child2 p {
        padding: 45px;
        padding-top: 0px;
        padding-bottom: 20px;
        font-size: 1.2em;
    }

    .footer-container {
        background: linear-gradient(to right, #000000, #624747);
        color: white;
        font-size: 0.7em;
        align-items: center;
        position: relative;
        width: 100%;
        height: auto;
        top: 70px;

       }

       .whole-thing {
        display: flex;
        flex-wrap: wrap;
        width: 100%; 
        position: relative;
        justify-content: left;
        top: -20px;
      }
    
        .footer-section {
          position: relative;
          top: -35px;
          
        }
      
        .footer-section h3 { /* Corrected class selector */
          color: #F8D210; /* Gold color for headings */
          position: relative;
          top: 70px;
          right: 90%;
          width: 100%;
           
        }
      
        .footer-links h3 { /* Corrected class selector */
          color: #F8D210; /* Gold color for headings */
          position: relative;
          left: -40%;
          top: 70px;
        }
      
        .footer-services h3 { /* Corrected class selector */
          color: #F8D210; /* Gold color for headings */
          position: relative;
          left: -30%;
          top: 70px;
        }
      
        .footer-contact h3 { /* Corrected class selector */
          color: #F8D210; /* Gold color for headings */
          position: relative;
          left: 0%;
          justify-content: center; /* Center the images within the container */
          top: 70px;
        }
      
         .footer-links a {
          position: relative;
          left: -40%;
          color: white;
          text-decoration: none;
          display: block; /* To list down links */
          margin-bottom: 5px;
          top: 90px;
        }
      
      .footer-section p {
          color: white;
          text-decoration: none;
          display: block; /* To list down links */
          margin-bottom: 5px;
          text-align: justify;
          position: relative;
          right: 90%;
          width: 100%;
          top: 90px;
      }
      
      .footer-services a  {
        position: relative;
          left: -30%;
          color: white;
          text-decoration: none;
          display: block; /* To list down links */
          margin-bottom: 5px;
          text-align: left;
      }
      
      
        .footer-links a:hover, .footer-services a:hover {
          text-decoration: underline;
        }
      
        .logo-footer img {
          position: relative;
          align-items:left;
          left: 125px;
          top: 40px;
          width: 220px; /* Prevents the sections from becoming too narrow on small screens */
          
              }
         
        .contact-icons img {
         position: relative;
          left: 620px;
          top: 50px;
          gap: 10px; 
          width: 70px;
          
        }
       
        .footer-contact p {
          text-align: justify;
          margin-bottom: 20px;
          position: relative;
          left: 0%;
          justify-content: center
        }
      
        .credit {
            background: linear-gradient(to right, #000000, #2e2121);
            text-align: center;
            align-content: center;
            position: relative;
            width: 100%;
            height: 4vh;
            top: 50px;
          
        }
    
    .credit p {
        color: white;
        opacity: 0.7;
    }
      
        .designed {
        position: relative;
        justify-content: center;
        align-items: center;
        opacity: 0.7;    
        letter-spacing: 1px;
        font-weight: 400;
        margin: 0px 0px;
        }

}

@media screen and (max-width: 860px){
    
    .whole-about {
        position: relative;
        font-size: 1.2em;
        display: flex;
        flex-wrap: wrap; /* Allow items to wrap */
        justify-content: center; /* Center children */
        align-items: flex-start;
        margin: 0px auto; /* Reduced margin */
        max-width: 1200px; /* More reasonable max-width */
    }

    .about-logo img  {
        position: relative;
        margin-top: 20px;
        margin-left: -20px;
        width: 150px;
    }

    .crew-pic img {
        position: relative;
        width: 370px;
        margin-bottom: -5px;
        
    }

    .container-all {
        background-color: #463333;
        color: white;
        max-width: 97.3%;
        height: 120px;
        font-size: 1.0em;
        border-radius: 0px 0px 5px 5px;
    }

    .about-right {
        display: flex;
        flex-direction: column;
        position: relative;
        margin-top: 20px;
        margin-left: 15px;
        margin-right: 10px;
        max-width: 400px;
        font-size: 0.75em;
    }

    .thumbtack img {
        left: 93%;
        top: 5%;
        position: absolute;
        width: 20px;
    }

    .company-description h1 {
        font-size: 1.1em;
        margin: 2px;
    }


    .years h1 {
        font-size: 1.1em;
        margin: 2px;
}

.medals img {
    width: 170px;
}

    .white-box1 {
        display:flex;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 30px;
        max-width: 800px;
        font-size: 0.70em;
        text-align: center;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .child1 h1 {
        color: #463333;
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .white-box2 {
        display:flex;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        margin-top: 10px;
        margin-left: 20px;
        margin-right: 30px;
        max-width: 800px;
        font-size: 0.70em;
        text-align: center;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .parent-container img {
        width: 100px;
    }

    .footer-container {
        background: linear-gradient(to right, #000000, #624747);
        color: white;
        font-size: 0.7em;
        position: relative;
        width: 100%;
        height: auto;
        top: 70px;

       }

       .whole-thing {
        display: flex;
        flex-wrap: wrap;
        width: 100%; 
        position: relative;
        justify-content: left;
        top: -20px;
        left: -9%;
      }

      .footer-contact h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 0%;
        justify-content: center; /* Center the images within the container */
        top: 70px;
      }

      .footer-contact p {
        text-align: justify;
        margin-bottom: 20px;
        position: relative;
        left: 0%;
        justify-content: center
      }

      .footer-section h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        top: 70px;
        right: 50%;
        width: 100%;
      }
    
      .footer-section p {
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        text-align: justify;
        position: relative;
        right: 50%;
        width: 100%;
        top: 90px;
    }

      .footer-links h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 0%;
        top: 70px;
      }

      .footer-links a {
        position: relative;
        left: 0%;
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        top: 90px;
      }
    
      .footer-services h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 0%;
        top: 70px;
      }

      .footer-services a  {
        position: relative;
          left: 0%;
          color: white;
          text-decoration: none;
          display: block; /* To list down links */
          margin-bottom: 5px;
          text-align: left;
      }



    .logo-footer img {
        position: absolute;
        left: 680px;
        top: 150px;
        width: 150px; /* Prevents the sections from becoming too narrow on small screens */
        margin-bottom: 20px;
            }
       
      .contact-icons img {
       position: relative;
        left: 100px;
        top: 50px;
        gap: 10px; 
        width: 70px;
      }

      .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 4vh;
        top: 50px;
        left: 9%;
    }
}

@media screen and (max-width: 770px) {

    .crew-pic img {
        position: relative;
        width: 334px;
        margin-bottom: -5px;
    }

}


@media screen and (max-width: 549px) {
  
   .thumbtack {
    display: none;
   } 

   .company-description h1 {
    margin-bottom: 20px;
   }

   .years h1 {
    margin-bottom: 20px;
   }

   .medals img {
    width: 280px;
   }

.crew-pic img {
    position: relative;
    display: block;
    margin: auto;
    align-items: center;
    width: 100%;
}

.container-all {
    max-width: 100%;
}

    .parent-container { 
        display: flex;
        flex-direction: column;
        justify-content: center; 
        align-items: center;
        text-align: center;
        font-size: 1.0em;
        width: 100%;
        padding: 20px;
    }
    
    .white-box1 {
        display:flex;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        margin-top: 10px;
        margin-left: 0px;
        margin-right: 0px;
        max-width: 800px;
        font-size: 0.70em;
        text-align: center;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .child1 h1 {
        color: #463333;
        font-size: 1.6em;
        margin-bottom: 10px;
    }

    .white-box2 {
        display:flex;
        flex-direction: column;
        background-color: rgb(255, 255, 255);
        color: rgb(0, 0, 0);
        margin-top: 10px;
        margin-left: 0px;
        margin-right: 0px;
        max-width: 800px;
        font-size: 0.70em;
        text-align: center;
        align-items: center;
        justify-content: center;
        border-radius: 8px;
    }

    .child1 p {
        padding: 20px;
    }

    .child2 p {
        padding: 20px;
    }

    .footer-container {
        background: linear-gradient(to right, #000000, #624747);
        color: white;
        font-size: 0.7em;
        position: relative;
        width: 100%;
        height: auto;
        top: 60px;
        flex-wrap: wrap;
        flex-direction: column;
        justify-content: center;
        

       }

       .whole-thing {
        display: flex;
        width: 100%; 
        position: relative;
        justify-content: left;
        left: -40%;
      }

      .footer-section {
        position: relative;
      }
    
      .footer-section h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        top: 70px;
        right: -10%;
        width: 100%;
         
      }
    
      .footer-links h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 30%;
        top: 70px;
      }
    
      .footer-services h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 10%;
        top: 90px;
      }
    
      .footer-contact h3 { /* Corrected class selector */
        color: #F8D210; /* Gold color for headings */
        position: relative;
        left: 30%;
        justify-content: center; /* Center the images within the container */
        top: 90px;
      }
    
       .footer-links a {
        position: relative;
        left: 30%;
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        top: 90px;
      }
    
    .footer-section p {
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        text-align: justify;
        position: relative;
        right: -10%;
        width: 100%;
        top: 90px;
    }
    
    .footer-services a  {
      position: relative;
        left: 10%;
        top: 110px;
        color: white;
        text-decoration: none;
        display: block; /* To list down links */
        margin-bottom: 5px;
        text-align: left;
    }
    
    
    .footer-contact p {
        text-align: justify;
        margin-bottom: 20px;
        position: relative;
        left: 30%;
        justify-content: center;
        top: 110px;
        
      }

      .footer-links a:hover, .footer-services a:hover {
        text-decoration: underline;
      }
    
      .logo-footer img {
        position: relative;
        align-items:left;
        left: 180px;
        top: 70px;
        width: 180px;
            }
       
      .contact-icons img {
       position: relative;
        left: 150px;
        top: 120px;
        gap: 10px; 
        width: 45px;
        
      }

      .credit {
          background: linear-gradient(to right, #000000, #2e2121);
          text-align: center;
          align-content: center;
          position: relative;
          width: 100%;
          height: 4vh;
          top: 50px;
          left: 40%;
        
      }
  
  .credit p {
      color: white;
      opacity: 0.7;
  }
    
      .designed {
      position: relative;
      justify-content: center;
      align-items: center;
      opacity: 0.7;    
      letter-spacing: 1px;
      font-weight: 400;
      margin: 0px 0px;
      }
}

@media screen and (max-width: 414px) {
    .whole-thing {
        display: flex;
        width: 100%; 
        position: relative;
        justify-content: left;
        left: -45%;
      }

      .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 4vh;
        top: 50px;
        left: 45%; 
    }

    .logo-footer img {
        position: relative;
        align-items:left;
        left: 180px;
        top: 70px;
        width: 180px;
            }
       
      .contact-icons img {
       position: relative;
        left: 170px;
        top: 120px;
        gap: 10px; 
        width: 35px;
      }
}

@media screen and (max-width: 375px) {
    .whole-thing {
        display: flex;
        width: 100%; 
        position: relative;
        justify-content: left;
        left: -54.5%;
      }

      .credit {
        background: linear-gradient(to right, #000000, #2e2121);
        text-align: center;
        align-content: center;
        position: relative;
        width: 100%;
        height: 6vh;
        top: 50px;
        left: 54.5%; 
    }

    .logo-footer img {
        position: relative;
        align-items:left;
        left: 180px;
        top: 70px;
        width: 180px;
            }
       
      .contact-icons img {
       position: relative;
        left: 350px;
        top: 0px;
        gap: 10px; 
        width: 35px;
      }
}