:root {
    --primary-color: #8B4513;
    --secondary-color: #DAA520;
    --light-bg: #FFF8F0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: Georgia, serif;
    background-color: var(--light-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
}

h1 {
    font-size: 4rem;
    color: var(--primary-color);
    font-weight: normal;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
}
