body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}

h1 {
    font-size: 5rem;
    font-weight: 700;
    margin: 0;
    letter-spacing: -2px;
}

p {
    font-size: 1.2rem;
    color: #666;
    margin-top: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

@media (max-width: 600px) {
    h1 { font-size: 3rem; }
    p { font-size: 1rem; }
}