body {
    background-color: #0a0a0a;
    background-image: url('fundo.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: #e0e0e0;
    font-family: 'UnifrakturMaguntia', 'Cinzel', cursive;
    margin: 0;
    padding: 20px;
    font-size: 18px;
    line-height: 1.5;
}

/* Adicione um overlay escuro para melhor legibilidade */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.7);
    z-index: -1;
}

.header {
    
    padding: 30px 0;
    text-align: center;
    font-family: 'UnifrakturMaguntia', 'Papyrus', fantasy !important;
}

.header h1 {
    color: #ff0000;
    margin: 0;
    text-shadow: 2px 2px 4px #000;
    letter-spacing: 2px;
    font-family: 'UnifrakturMaguntia', 'Papyrus', fantasy !important;
    font-size: 3em !important;
}

.tagline {
    color: #ff0000;
    font-family: 'Jim Nightshade', cursive !important;
    font-size: 1.7em;
    line-height: 1.6;
    margin: 15px 0;
    font-style: normal;
}

.nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.nav a {
    color: #ff0000;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    font-size: 1.1em;
}

.nav a:hover {
    background-color: #5D1F1F;
    border-color: #8B0000;
    transform: translateY(-2px);
}

.content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Cinzel', 'Georgia', serif;
}

.poema {
    background-color: rgba(17, 17, 17, 0.85); /* Mais transparente */
    color: #fff !important;
    padding: 20px;
    margin: 20px 0;
    border-left: 3px solid #8B0000;
    font-family: 'Cinzel', 'Georgia', serif;
    backdrop-filter: blur(2px); /* Efeito de desfoque opcional */
}

.poema h3 {
    color: #ff0000 !important;
    font-family: 'UnifrakturMaguntia', cursive !important;
    font-size: 1.8em !important;
}

.poema p {
    font-family: 'Jim Nightshade', cursive !important;
    font-size: 1.3em !important;
    color: #e0e0e0 !important;
    margin: 15px 0;
    line-height: 1.6;
}

.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    border-top: 1px solid #333;
    color: #666;
    font-family: 'Cinzel', serif;
}