* {
    padding: 0px;
    margin: 0px;
}

ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    margin-top: 20px;
    margin-bottom: 35px;
}

body {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    background: white;



}

#imagem {
    margin-top: 15px;
    width: 500px;

}

a {
    text-decoration: none;
    color: #F1B604;
}

a:hover {
    text-decoration: overline;
    color: #61BC63;
}

p {
    color: black;
}

#arrow {
    font-size: 30px;
    cursor: pointer;
    animation: blink 1s steps(5, start) infinite;
    color: #F1B604;
}

#arrow:hover {
    color: #61BC63;
}

@keyframes blink {
    to {
        visibility: hidden;
    }
}

#animation {
    transition: 300ms;
}

.rotate {
    transform: rotate(180deg);
    transition: 300ms;
}

.active {
    display: block !important;
}

#about {
    max-width: 600px;
    margin: 0 auto;
}

footer {
    display: flex;
    justify-content: center;
    margin-top: 250px;
    margin-bottom: 35px;
    
}

@media only screen and (max-width:414) {
    
    .container .name #imagem {
        width: 250px !important;
    }

    #about p {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
    }

    footer p {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
    }
   
}

@media only screen and (max-width:480px) {
    ul {
        list-style: none;
        display: flex;
        justify-content: space-evenly;
        margin-top: 20px;
        margin-bottom: 35px;
        font-size: 10px !important;
    }
    .container .name #imagem {
        width: 200px !important;
    }

    #about p {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
    }

    footer p {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
    }
}

@media only screen and (max-width:768px) {
    .container .name #imagem {
        width: 350px !important;
    }

    .container .name h5 {
        font-size: 15px;
    }

    #about p {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
    }

    footer p {
        max-width: 80%;
        text-align: center;
        margin: 0 auto;
        
    }
}
