* {
    padding: 0.5em;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;

}

body.page-qrcode {
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
}

header {
    text-align: left;

}

h1 {
    margin-bottom: 0.1em;
    font-size: 2.5em;
    
}

h2 {
    margin-top: 0.1em;
    font-size: 2em;
}

/* ==== index.html ==== */
.poetry-section{
    font-family: "Times New Roman", serif;
    font-size: 1.4em;
    line-height: 1.25;
}

/* ==== hub.html ==== */
.main-nav ul {
    list-style: none;
    justify-content: left;
    gap: 1.5rem;
    padding: 0;
    margin: 0;
}

.main-nav li a {
    text-decoration: none;
    color: #333;              /* Cor do texto */
    font-weight: bold;
    padding: 0.5rem 1rem;
    transition: background-color 0.3s;
}

.main-nav li a:hover {
    background-color: #8c8b8b;
    border-radius: 4px;
}