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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #E6D5AC; /* Sandy beige color */
    color: #4A4A4A; /* Darker text color for better contrast */
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
    padding: 20px;
}

h1 {
    font-size: 2.5rem;
    font-weight: bold;
}

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