main{
    background-color: #d22b49;
    padding-top: calc(var(--header-height) + 40px) ;
    margin-top: calc(0px - var(--header-height));
    padding-bottom: 140px;
    font-family: 'Fira Sans', sans-serif;
    background-image: url("../img/Imagem-100.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: auto 100%;
}
@media (max-width:1640px) {
    main{
        background-position-x: left -30px;
    }
}
@media (max-width:768px) {
    main{
        background-image: url("/src/img/discografia-background-centralizado.png");
        background-position-x: center;    
    }
}

.main-title{
    text-align: center;
    color: white;
    font-size: 56px;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 40px;
}

/* DISPLAY */
.display{
    display: flex;
    justify-content: center;
    gap: 76px;
}
@media (max-width:768px) {
    .display{
        gap: 30px;
        flex-direction: column-reverse;
        align-items: center;
    }    
}

.display__texto{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    max-width: 338px;
}
@media (max-width:768px) {
    .display__texto{
        gap: 20px;
    }    
}

.display__title{
    color: white;
    font-size: 32px;
    font-weight: 900;
}
@media (max-width:768px) {
    .display__title{
        text-align: center;
    }    
}

.display__description{
    color: white;
    font-size: 18px;
    font-weight: 500;
}

.display__links{
    /* background-color: #C29B31; */
    background-color: rgba(0,0,0,0.3);
    width: 100%;
    height: 65px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.display__links  .nav-spotify{
    fill: #47D760;
}
.display__links  .nav-deezer{
    fill: #EBDD8E;
}
.display__links  .nav-apple-music{
    fill: #EE595B;
}

.display__img{
    max-width: 200px;
}


/* ALBUMS */
.album-section{
    margin-top: 87px;
    min-height: 280px;
}

.album-list{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr) );
    gap: 16px;
    justify-items:center;
}

.album{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

.album-image{
    max-width: 100%;
    width: 200px;
}

.album-title{
    text-align: center;
    text-transform: uppercase;
    color: white;
    font-size: 14;
    font-weight: 900;
}

.on-display{
    display: none;
}

/* 
.curta-o-som{
    color: white;
    text-decoration: none;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
} */