body{
    background-color: #F2D7B6;
    margin: 0;
    font-family: 'Nunito', sans-serif;
}

.cabecalho{
    background-image: url(imagens/cats.png);
    position: relative;
    height: 99vh;
    width: 100vw;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-top: 1px;
}

.div-cabecalho{
    margin: 30vh auto 0 auto;
    width: 80%;
    color: #F2BFB3;
    text-align: center;
}

.div-cabecalho h1{
    font-size: 5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
}

.div-cabecalho h2{
    font-size: 1.5rem;
    text-transform: uppercase;
    text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
    margin-bottom: 70px;
}

.div-cabecalho a{
    color: #A6978F;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 #A6978F;
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    text-decoration: none;
    padding: 10px;
    border-radius: 5px;
    text-transform: uppercase;
}

.div-cabecalho a:hover{
    color: #F2F2F2;
    background: #a6978f3b;
    box-shadow: 0 8px 32px 0 #A6978F;
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.cabecalho nav ul{
    margin-right: 25px;
    text-align: right;
}

.cabecalho nav ul li{
    list-style-type: none;
    display: inline-block;
    margin-left: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
}

.cabecalho nav a{
    color: #A6978F;
    text-decoration: none;
    padding: 8px;
    background: rgba( 255, 255, 255, 0.25 );
    box-shadow: 0 8px 32px 0 #A6978F;
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

.cabecalho nav a:hover{
    color: #F2F2F2;
    background: #a6978f3b;
    box-shadow: 0 8px 32px 0 #A6978F;
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
    border-radius: 10px;
    border: 1px solid rgba( 255, 255, 255, 0.18 );
}

main{
    width: 90%;
    margin: auto;
    margin-top: 2rem;
    color: #645a54;
}

.container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    justify-items: stretch;
    justify-content: space-between;
    grid-gap: 20px;    
}

main article{
    background-color: #F2F2F2;
    text-align: justify;
    padding-top: 5px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    box-shadow: 0 8px 32px 0 #A6978F;
    backdrop-filter: blur( 1.5px );
    -webkit-backdrop-filter: blur( 1.5px );
    border-radius: 10px;
}

main article header{
    text-align: center;
    background-color: #e0cdcd;
    color: #4d4540;
}

main article:hover{
    transform: skew(0.3deg, 0.3deg);
}

.conteudo{
    display: flex;
    align-items: center;
}

.conteudo img{
    width: 80px;
}

.conteudo img:hover{
    transform: scale(1.2);
}


lottie-player:hover{
    transform: scale(1.2);
}

.conteudo p{
    margin-left: 10px;
}

footer{
    background: rgba(255, 255, 255, 0.459);
    display: flex;
    align-items: center;
    justify-content: center;
    bottom:0;
    left: 0;
    margin: 0 auto;
    width: 100%;
    height: 25px;
    padding: 1px;
}

footer h4{
    color: #af9b9b;
    font-size: 13px; 
    font-weight: 200;
    font-weight: bold;
}

@media screen and (max-width: 1024px) {
    .container{
        grid-template-columns: 1fr 1fr;
    }



  }

@media screen and (max-width: 750px) {
    .container{
        grid-template-columns: 1fr;
    }

    .div-cabecalho h1{
        font-size: 3rem;
    }
    
    .cabecalho nav ul{
        margin-top: 35px;
        display: flex;
        flex-direction: column;
    }

    .cabecalho nav ul li{
        margin-bottom: 25px;
    }

    .div-cabecalho{
        margin: 12vh auto 0 auto;
        width: 80%;
        text-align: center;
    }

}

