body{
    background-color: white;
    font-family: poppins, sans-serif;
    line-height: 1.5;
    color: #111010;
    margin: 0;
    padding: 0;
}

.showInfo{

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 88.2vh;
    scroll-behavior: none;
    text-align: center;
    background-color: #ffffff;
    font-size: 1.3rem;
}
.showInfo img{
    height: 30vh;
}
footer{
    background-color: #242527;
    /* height: 8.3vh; */
    display: flex;
    justify-content: center;
    align-items: center;
    color: aliceblue;
    position: relative;
    bottom: 0;
    width: 100%;
    font-family: poppins, sans-serif;
}
footer p{
    margin-left: 5%;
    margin-right: 5%;
    text-align: center;
}
#navigation{
    background-color: #2A2A33;
    width: 100%;
}
.navbar .max-width{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 6vh;
  
}
.nav-links{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo-container{
    position: relative;
}
.nav-links li{
    list-style: none;
    margin: 0 10px;
    text-decoration: none;
}

.nav-links li a{
    text-decoration: none;
    color: white;
    font-size: 2 rem;
    font-weight: 500;
    padding: 10px 15px;
    display: block;
    border-radius: 10%;
    transition: all 0.3s ease;
}
.logo-container img{
   height: 7vh;
   margin-top: 20%;
}
.nav-links li a:hover{
    background-color: #242527;
    color: #e4dddd;
}
.nav-links li a i{
    margin-right: 5px;
}
.hamburger-menu{
    display: none;
}


@media screen and (max-width: 767px) {


    .showInfo img {
            height: 20vh;
        }

        .nav-links{
            display: none;
        }

        .hamburger-menu {
            display: block;
            position: absolute;
            right: 10px;
            cursor: pointer;
            z-index: 2;
        }
    
        .bar {
            width: 25px;
            height: 3px;
            background-color: #fff;
            margin: 5px 0;
            transition: all 0.3s ease;
            border-radius: 30px;
        }
    
        .hamburger-menu.active .bar:nth-child(1) {
            transform: translateY(8px) rotate(45deg);
        }
    
        .hamburger-menu.active .bar:nth-child(2) {
            opacity: 0;
        }
    
        .hamburger-menu.active .bar:nth-child(3) {
            transform: translateY(-8px) rotate(-45deg);
        }

}