body {
    font-family: Arial, sans-serif;
    background: #ffffff;   /* fundo branco */
    color: #000000;        /* texto preto */
    padding: 20px;
}

h1 {
    margin-bottom: 30px;
}

.song {
    background: #ffffff;   /* sem caixas cinzas */
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 6px;
}

pre {
    background: none;
    padding: 0;
    font-family: "Courier New", monospace;
    font-size: 15px;
    line-height: 1.4;
    white-space: pre;
    overflow-x: auto;
    font-weight: bold;   /* ← AQUI */
}

a {
    color: #000000;        /* links pretos */
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Impressão */
@media print {
    body {
        background: #ffffff;
        color: #000000;
        padding: 0;
    }

    a {
        text-decoration: none;
    }

    a[href]:after {
        content: "";
    }
}
/* Cabeçalho */
header {
    text-align: center;     /* centraliza tudo dentro */
    margin-bottom: 30px;
}

/* Logo */
.logo {
    display: block;
    margin: 0 auto 15px auto; /* centraliza horizontalmente */
    max-width: 640px;        /* ajuste se quiser menor/maior */
    height: auto;
}
