body {
    margin: 0;
    padding: 0;
    background-color: #f7f4ef;
    font-family: 'Georgia', serif;
    color: #1a1a1a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
}

.container {
    max-width: 600px;
    padding: 2rem;
}

h1 {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.05rem;
    margin-bottom: 0.5rem;
}

p {
    font-size: 1rem;
    margin: 0.2rem 0;
    color: #333;
}

.links a {
    color: #333;
    text-decoration: none;
    margin: 0 0.5rem;
    font-style: italic;
    font-size: 0.9rem;
}

.links a:hover {
    text-decoration: underline;
}

@media (max-width: 600px) {
    h1 {
        font-size: 32px;
    }
    p {
        font-size: 18px;
    }
}