
main .conteudo-discografia {
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    align-items: center;
}

main .caixa-album {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30vh;
    width: 100%;
    
}

.caixa-album .album {
    display: flex;
    flex-direction: row;
    height: 60%;
    width: 90%;
    background-image: linear-gradient(180deg, #8C1007 10%, #660B05 100%);
    border-radius: 15px;
    transition: filter 0.2s ease;
}

.caixa-album .album:hover {
    filter: brightness(0.8);
}

.album-info {
    display: flex;
    width: 50%;
    height: 100%;
}

.album-info h2 {
    font-family: "Mozilla Headline", Arial, Helvetica, sans-serif;
    font-size: 28px;
    color: white;
}

.album-info h3 {
    font-size: 20px;
    color: white;
}

.album-audio {
    display: flex;
    flex-direction: column;
    width: 50%;
    height: 100%;
}

.album-audio h3 {
    font-family: "Mozilla Headline", Arial, Helvetica, sans-serif;
    font-size: 20px;
    color: white;
}

.album-audio .audio {
    display: flex;
    width: 100%;
    height: 50%;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
}

.album-info2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 65%;
    height: 100%;
    
}

.album-info1 {
    display: flex;
    justify-content: flex-start;
    width: 35%;
    height: 100%;
}

.imagem-album {
    width: 100%;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
}
