@import url('https://fonts.googleapis.com/css2?family=Libertinus+Math&display=swap');

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body{
    background-color: #eddccf;
    color: #24211E;
    font-family: "Cabin", sans-serif;
    font-weight: 400;
}

header{
    background: linear-gradient(to right, #93d2dc, #93d4cc);
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header img{
    width: 300px;
    height: auto;
}

nav a{
    color:rgb(22, 45, 54);
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    padding: 5px 12px;
    margin: 0px 20px;
}

nav a:hover {
    color:#8b7258;
    background-color: #daba98;
    border-radius: 15px;   
}

main{
    text-align: center;
    margin: 20px;
}

main img{
    width: 550px;
    height: auto;
}

#frase-de-efeito{
    letter-spacing: 1px;
    color: #2e7b71;
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 8px #134a4b;
}

h1{
    color: #2e7b71;
    font-size: 2rem;
    text-shadow: 1px 1px 5px #2d6465;
    margin: 20px;
}

h2{
    color: rgb(23, 103, 101);
}


.vídeo-gallery{
        display: flex;
        flex-flow: wrap;
        gap: 20px;
        width: 90%;
        max-width: 1200px;
        margin:  0px auto;
        padding-top: 20px;
        flex-direction: row;
}

.vídeo-container{
    display: flex;
    flex-flow: wrap;
    flex-direction: column;
    text-align: center;
    transition: transform 0.s ease;
    border-radius: 8px;
    background: #2ca393;
    box-shadow: 0px 0px 4px 6px rgba(0,0,0,0.1);
}

.vídeo-container img:hover{
    transform: scale(1.1);
}

.thumbnail{
    background-size: cover;
    background-position: center;
}

.vídeo-container img{
    width: 500px;
    height: auto;
    background-size: cover;
    transition: transform 0.3s ease;
}

.vídeo-title{
    padding: 15px;
    margin: 0px;
    font-size: 1rem;
    color: #18796c;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.vídeo-container:hover.vídeo-title{
    color: #10695d;
    text-decoration: underline #44afa1;
}

#topo{
    margin-top: 20px;
}

#topo a{
    text-decoration: none;    margin-top: 40px;
    color: #8b7258;
}

#topo a:hover{
    color: #daba98;
    background-color: rgb(109, 95, 77);
    border-radius: 10px;
}

footer{
    background-color: #93d4cc;
    color:rgb(11, 48, 63);
    text-align: center;
    padding: 15px;
}

footer img{
    width: 24px;
    height: 24px;
    transition: transform 0.2 ease;
    margin: 0px 6px;
}

footer img:hover{
    transform: scale(1.1);
}

.redes-sociais{
    margin-top: 10px;
}

@media(max-width:600px){
    figure img{
        width: 100%;
    }
}