*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    
}

html {
    scroll-behavior: smooth;
}

nav{
  display: flex;
  align-items: center;
  height: 10vh;
  justify-content: space-evenly;
  margin-bottom: 100px;
  margin-top: 100px;
  margin-left: 50px;
  margin-right: 50px;

}

nav>ul{
    display: flex;
    list-style: none;
}

nav>ul>li{
    margin-right: 40px;
    margin-top: 1px;


}

nav>ul>li>a {
    font-weight: bold;
    text-decoration: none;
    color: black;
    font-size: 37px;
    font-family: "Margarine", sans-serif;
    position: relative;
}

nav>ul>li>a::after {
    content: " ";
    width: 0%;
    height: 4px;
    background-color: black;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width 0.5s ease-in-out;
}

nav>ul>li>a:hover::after {
    width: 100%;
}


.icon>img{
    width: 230px;
    height: auto;
}



hr {
    width: 40%;
    border: 0;
    height: 3px;
    background: #333;
    margin: 10px auto;
}

@media screen and (max-width:1200px) {

    
    .nav-links{
       display: none;
    }

    .navbar {
        justify-content: center;
        margin-bottom: 50px;
        margin-top: 50px;
        margin-left: 20px;
    }

    .icon {
        margin: 0 10px;
    }

    .icon img {
        width: 350px; /* Ajuste o tamanho do ícone conforme necessário */
    }
}

@media screen and (max-width: 1200px) {
    .nav-links {
        display: none;
    }

    .navbar {
        justify-content: center;
        margin-bottom: 50px;
        margin-top: 50px;
        margin-left: 20px;
        margin-right: 20px; /* Adicionado para consistência */
    }

    .icon {
        margin: 0 10px;
    }

    .icon img {
        width: 350px; /* Ajuste o tamanho do ícone conforme necessário */
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar {
        justify-content: center;
        margin-bottom: 50px;
        margin-top: 50px;
        margin-left: 8px;
        margin-right: 20px; /* Adicionado para consistência */
    }

    .icon {
        margin: 15px 10px 15px 20px;
    }

    .icon img {
        width: 160px; /* Ajuste o tamanho do ícone conforme necessário */
    }
}
