@font-face {
    font-family: 'minha fonte';
    src: url(fontes/mangat.ttf) format('truetype');
}

@font-face {
    font-family: 'lindeza';
    src: url(fontes/mangati.ttf) format('truetype');
}

@font-face {
    font-family: 'coisa';
    src: url(fontes/mangatb.ttf)format('truetype');
}

body {
    background-color: #363b38;
}


header div img {
    width: 40%;
    display: block;
    margin: 0 auto;
}


header {
    display: flex;
    flex-direction: column;
    background-image: linear-gradient(to right, #4b584f, #869175, #3b463e);
    align-items: center;
    justify-content: center;
    padding: 8px;
    text-align: center;
    border-radius: 20px;
    height: 14vw;
}

nav {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 40px;
    padding: 5px;
}

nav a {
    color: #F2E0C9;
    text-decoration: none;
    font-size: 20px;
    font-family: 'minha fonte';
    text-shadow: 2px 2px 4px black;

}

nav a:hover {
    color: #d0d097;
    background-color: rgba(42, 41, 41, 0.7);
    padding: 5px;
    border-radius: 10px;
}


p {
    text-align: center;
    font-size: 2vw;
    color: #8a5a5d;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

h1 {
    text-align: center;
    font-size: 3vw;
    color: #9f9e9e;
    font-family: 'lindeza';
}

.musica p {
    color: #F2E0C9;
    text-decoration: none;
}

.musica {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    flex-direction: row;
    margin-top: 25px;


}

.thumbnail {
    width: 520px;
    height: 380px;
    border-radius: 15px;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.thumbnail:hover {
    transform: scale(1.03);
    box-shadow: 0 0 15px #8a885a;
}


.musica a {
    text-decoration: none;
    background-image: linear-gradient(to right, rgba(109, 136, 118, 0.7), rgba(193, 187, 128, 0.5));
    padding: 20px;
    border-radius: 20px;
}


.galeria {
    width: 100%;
    display: flex;
    flex-direction: column;


}


footer {
    background-image: linear-gradient(to right, #57675c, #929f7e, #57675c);
    color: #F2E0C9;
    padding: 20px 0px;
    text-align: center;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;

}

#topo a {
    text-decoration: none;
    color: #ebd2aa;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 1.4vw;
}

#topo a:hover {
    color: #8a5a5d;
}


footer .redes-sociais {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

footer .redes-sociais img {
    width: 24px;
}

footer .redes-sociais img:hover {
    transform: scale(1.1);
}

@media(max-width:700px){
      header,nav{
        width: 100%;
    }


    header div img{
        width: 30%;
        margin-top: 10px;
        
    }

    nav{
        gap: 5px;
        margin-top: 5px;
    }

    nav a{
        display: flex;
        font-size: 40%;
    }

    .thumbnail{
           width: 320px;
    height: 180px;
    }

}