/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    height: 100%;
    background: #ffffff;
    color: #000;
    line-height: 1.6;
}

.container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
}

/* Typography */
h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #000;
    margin-bottom: 1rem;
    height: 3.6rem;
    line-height: 1.2;
}

p {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 1rem;
}

/* Links */
a {
    color: #000;
    text-decoration: underline;
}

a:hover {
    text-decoration: none;
}

/* Responsive design */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    
    p {
        font-size: 1.1rem;
    }
}

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