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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-family: "Red Hat Text", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
}

section {
    margin: 2rem 0;
}

h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #34495e;
    font-family: "Red Hat Text", sans-serif;
    font-weight: 500;
}

ul {
    list-style: none;
}

li {
    margin: 0.5rem 0;
}

a {
    color: #3498db;
    text-decoration: none;
    font-size: 1.1rem;
    font-family: "Red Hat Text", sans-serif;
    transition: color 0.3s ease;
}

a:hover {
    color: #2980b9;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    a {
        font-size: 1rem;
    }
}