    body{
        margin: 0;
        padding-left: 60px;
        font-family: "Times New Roman", Times, serif;
        background: linear-gradient(to bottom, #030303 0%, #241913 36%, #1F100A 100%);
        display: flex;
        align-items: center;
        height: 100vh;
        position: relative;
        z-index: 2;
    }

    body.pagina-musica {
    background: linear-gradient(to bottom, #2C2724 0%, #2B2623 50%, #2C2724 100%);
    }

    h1, h2, h3, p{
        color: white;
    }
    h1{
        font-size: 48px;
    }

    h2{
        font-size: 36px;
    }
    h3{
        font-size: 24px;
    }

    p{
        font-size: 18px;
        max-width: 600px;
    }

    .img{
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
    }

    .img img{
        height: 100%;
        display: block;
        -webkit-mask-image: linear-gradient(to left, black 80%, transparent);
        mask-image: linear-gradient(to left, black 80%, transparent);
    }

    button{
        border-radius: 20px;
        padding: 12px 24px;
        background-color: transparent;
        border: 3px solid #7B3F00;
        color: white;
        cursor: pointer;
    }

    button.estilo{
        border-radius: 20px;
        padding: 12px 24px;
        background-color: transparent;
        border: 3px solid #6a6158;;
        color: white;
        cursor: pointer;
    }

    button:hover{
        background-color: #7B3F00;
    }

    button:hover.estilo{
        background-color: #6a6158;
    }

    #musica img{
        margin-top: 10px;
        border-radius: 10px;
    }

    .lyrics{
    max-height: 500px;
    overflow-y: auto;
    max-width: 700px;
    text-align: left;
    background: rgba(255,255,255,0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    }

    .lyrics p{
        white-space: pre-line;
        font-size: 16px;
    }

    .lyrics h4{
        margin-top: 0;
    }


    @media (max-width: 1024px){

    body{
        padding-left: 40px;
    }

    h1{
        font-size: 40px;
    }

    h2{
        font-size: 30px;
    }

    p{
        font-size: 16px;
        max-width: 500px;
    }

    .img img{
        height: 90vh;
    }

    }

    @media (max-width: 768px){

    body{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 20px;
        text-align: center;
        height: auto;
    }

    .img{
        position: relative;
        width: 100%;
        margin-top: 30px;
        z-index: 1;
    }

    .img img{
        width: 100%;
        height: auto;
        mask-image: none;
        -webkit-mask-image: none;
    }

    }

    @media (max-width: 480px){

    h1{
        font-size: 28px;
    }

    h2{
        font-size: 24px;
    }

    p{
        font-size: 15px;
    }

    button{
        padding: 10px 18px;
        font-size: 14px;
    }

    }