body {
    background-color: #ccc5cd;
    margin: 0;
    min-height: 100vh;
    display: flex;
    justify-content: center;
}

.bac {
    background-color: #f3eff4;
    width: 600px;

    display: flex;
    justify-content: center;   /* CENTRALIZA A .container HORIZONTALMENTE */
}

.container {
    margin-top: 60px;              /* imagem um pouco abaixo do topo */
    width: 90%;
    max-width: 500px;              /* largura padrão da imagem */
    text-align: center;
}

.container img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    display: block;
    margin: 0 auto 20px auto;
}

.spotify {
    width: 100%;                   /* mesma largura da imagem */
    display: block;
    margin: 0 auto 20px auto;
}

h3 {
    font-family: "Times New Roman", Times, serif;
    color: #000000;
    font-weight: normal;
    line-height: 1.5;
}

@media (max-width: 768px) {

    .bac {
        width: 100%;          /* ocupa toda a largura da tela */
        padding: 0 15px;      /* respiro lateral */
        box-sizing: border-box;
    }

    .container {
        width: 100%;
        max-width: 100%;
        margin-top: 40px;     /* menos espaço no mobile */
    }

    .container img {
        border-radius: 12px;  /* mais natural em telas pequenas */
    }

    .spotify {
        height: 100px;        /* melhor proporção no mobile */
    }

    h3 {
        font-size: 1rem;      /* texto mais confortável */
        padding: 0 10px;
    }
}


