:root {
    --font-family: 'Alice', serif;
}

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

h2 {
    font-size: 1.8em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
}

p {
    line-height: 1.6;
}

body {
    padding-top: 80px;
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
        url(assets/Textura-suave-de-café-para-fundo-de-site.png);
    background-size: cover;
    background-position: center;
    position: relative;
}

img {
    border-radius: 16px;
    max-width: 100%;
}

#page {
    max-width: 800px;
    margin: auto;
    padding: 50px;
    background-color: #F0E8C2;
    border-radius: 16px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-family: var(--font-family);
    color: #333;
}

#about {
    margin-top: 40px;
    margin-bottom: 60px;
}

#footer {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
    font-size: 0.9em;
    color: #fff;
}