@import url('https://fonts.googleapis.com/css2?family=Libertinus+Math&display=swap');

*{
    box-sizing: border-box;
    margin: 0px;
    padding: 0px;
}

body{
    background-color: #b3e7ff;
    color: #24211E;
    font-family: "Cabin", sans-serif;
    font-weight: 400;
}

header{
    background: linear-gradient(to right, #c1a6c5, #E19094);
    padding: 20px 0px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

header img{
    width: 300px;
    height: auto;
    margin-bottom: 10px;

}

nav{
    text-align: center;
}

nav a{
    color:#a780a5;
    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;
}

#frase-de-efeito{
    letter-spacing: 1px;
    color: rgb(21, 78, 100);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 1px 1px 8px #2c80a1;
}

h1{
    color: rgb(11, 48, 63);
    font-size: 2rem;
    text-shadow: 0px 0px 8px #2c80a1;
    padding: 20px;
}

h2{
    color: #1e4080;
}

.vídeo-gallery{
        display: flex;
        flex-flow: wrap;
        gap: 20px;    
        margin-top: 40px;
        width: 90%;
        max-width: 1200px;
        margin:  0px auto;
        padding-top: 20px;
        flex-direction: row;
        text-align: center;
        background-position: center;
}

.vídeo-container{
    display: flex;
    flex-flow: wrap;
    flex-direction: column;
    text-align: center;
    transition: transform 0.s ease;
    border-radius: 8px;
    background: #ebbcbe;
    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: #a76b6e;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.vídeo-container:hover.vídeo-title{
    color: #d17b7f;
    text-decoration: underline #aa676a;
}

#topo{
    margin-top: 20px;
}

#topo a{
    text-decoration: none;
    color: #8b7258;
}

#topo a:hover{
    color: #daba98;
    background-color: rgb(109, 95, 77);
    border-radius: 10px;
}

footer{
    background-color: #e4a7aa;
    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%;
    }
}