* {
    margin: 0;
    padding: 0;
      box-sizing: border-box;

}

@font-face {
    font-family: 'Loew';
    src: url('../font/loew-extrabold.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Playfair';
    /* Font para Título*/
    src: url('../font/PlayfairDisplay-Italic.otf') format('opentype');
    font-weight: normal;
    font-style: italic;
}

body {
    background-color: #262626;
    overflow-x: hidden;
    color: rgb(224, 224, 224);
    height: 100vh;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 100;
}

.container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
}

header {
     margin-top: 10px;
    margin-bottom: 80px;
    height: 90vh;
    overflow: hidden;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 120px;

}

.link-img>img {
    max-width: 280px;
    object-fit: cover;
}

header>h1 {
    font-family: 'Playfair', Times, serif;
    font-weight: 100;
    font-size: 4.5rem;
    text-transform: lowercase;
    white-space: pre-line;
    line-height: 1.0;
    text-align: center;
}

header>p {
    font-family: 'Playfair', Times, serif;
    font-weight: normal;
    font-size: 1.3rem;
}

header>p>span {
    font-family: 'Loew', Times, serif;
    text-transform: uppercase;
    letter-spacing: .1rem;
}

.section-about {
    height: 100%;
    width: 100%;
    background-color: #898989;
    z-index: -2;
    position: relative;
    padding: 30px;
  
}

.about-container {
    margin-top: 80px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 75px;

}

.background-text {
    font-family: 'Playfair', Times, serif;
    position: absolute;
    top: 24%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 26em;
    color: rgba(216, 216, 216, 0.068);
    z-index: -1;
}

.text-about {
    color: rgb(240, 240, 240);
    font-size: 1.1rem;
    line-height: 1.5;
    width: 600px;
    white-space: pre-line;
    display: flex;
    justify-content: center;
}

.composers {
    display: flex;
    gap: 30px;

}

.composers-avatar {
    max-width: 190px;
    box-shadow: 0 0 1px rgba(32, 32, 32, 0.507);
    border-radius: 2px;
}

.nameComposers {
    margin-top: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 1.0rem;
}

.responsibility {
    margin-top: 4px;
    text-align: center;
    font-size: .8rem;
}

.section-discography{
    background-color: #262626;
    width: 100%;
    height: 100%;


}

.discography {
    padding: 90px;
    margin-bottom: 50px;
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.discography>h2 {
    font-family: 'Playfair', Times, serif;
    font-size: 11.5rem;
    color: black;
    margin-top: -120px;
    margin-bottom: 30px;
}

.release {
    width: 950px;
    display: flex;
    gap: 30px;
}

.cover-single {
    max-width: 380px;
    object-fit: cover;
    margin-left: 10px;
}

.year {
    font-family: 'Loew', Times, serif;
    font-size: 1.0rem;
    color: rgba(224, 224, 224, 0.685);
    letter-spacing: .1rem;

}

.artist {
    font-family: 'Loew', Times, serif;
    font-size: 1.6rem;
    text-transform: uppercase;
    color: rgb(255, 255, 255);
    letter-spacing: .1rem;
}

.title {
    font-family: 'Playfair', Times, serif;
    white-space: pre-line;
    font-size: 1.8rem;
    line-height: 1.0;
    color: rgba(224, 224, 224, 0.541);
    margin-bottom: 8px;
}

ol {
    list-style-type: decimal;
    margin-top: 10px;
    margin-left: 18px;
    color: rgb(255, 255, 255);
    margin-bottom: 25px;
}

li {
    font-family: Arial, Helvetica, sans-serif, Times, serif;
    font-weight: bold;
    line-height: 1.4;
    font-size: 1.2rem;
}

li::marker {
    font-weight: normal;
}

.title-normal {
    font-weight: normal;
}

.btn {
    font-family: 'Loew', Times, serif;
    margin-top: 31px;
}

.link-img {
    background-color: #af171700;
}

.link-img:hover {
    background-color: #af171700;
}

a {
    text-decoration: none;
    background-color: #898989;
    color: white;
    text-transform: uppercase;
    letter-spacing: .1rem;
    padding: 10px 30px 10px 30px;
    border-radius: 30px;
}

a:hover {
    background-color: #afafaf;
    color: rgba(255, 255, 255, 0.856);
}

footer {
    height: 30vh;
    width: 100%;
    background-color: #898989;
    display: flex;
    justify-content: center;
    align-items: center;
}

footer>div>img {
    max-width: 180px;
    object-fit: cover;
}

/*Responsividade telas até 768px*/

@media (max-width:768px) {

    header {
        max-height: 80vh;
    }

    .link-img>img {
        max-width: 180px;
        margin-right: 10px;
        margin-top: 80px;
        margin-bottom: 50px;
    }

    header>h1 {
        font-size: 2.3rem;
        margin-right: 10px;
        margin-bottom: 80px;
    }

    header>p {
        font-size: .8rem;
        margin-right: 10px;
    }

    .section-about {
        width: 100%;
        height: 100%;
        margin-bottom: 30px;
    }

    .about-container {
        margin-top: 10px;
        margin-bottom: 60px;
    }


    .background-text {
        font-size: 9.5em;
        top: 14%;
        left: 47%;
    }

    .text-about {
        margin-top: 50px;
        width: 70vw;
    }

    .composers {
        display: flex;
        flex-flow: column nowrap;
        align-items: center;
        gap: 30px;
    }


    .discography {
        height: 110vh;
        gap: 1px;

    }

    .discography>h2 {

        font-size: 4.2rem;
        margin-top: 10px;
        margin-bottom: 50px;
    }

    .release {
        max-width: 430px;
        flex-flow: column wrap;
        justify-content: center;
        align-items: center;
    }

    .cover-single {
        max-width: 280px;
    }

    .info {
        display: flex;
        align-items: center;
        flex-flow: column nowrap;

    }

    .year {
        margin-top: 20px;
        margin-right: 230px;
    }

    .artist {
        margin-right: 60px;
    }

    .title {
        margin-right: 40px;
        font-size: 1.4rem;
    }

    li {
        width: 320px;
        font-size: .85rem;
        margin-left: 50px;
        line-height: 1.8;
    }

    .btn {
        margin-top: 30px;
        margin-left: 10px;
        margin-bottom: 20px;
    }

    footer {
        height: 20vh;

    }

    footer>div>img {
        max-width: 100px;
        margin-left: 10px;
    }
}