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

body {
    background-color: #f5f1e8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #4a7c59;
}

h1 {
    font-size: 4rem;
    font-weight: 600;
    color: #4a7c59;
    margin-bottom: 1.5rem;
    text-align: center;
}

p {
    font-size: 1.5rem;
    color: #6b9d7f;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-align: center;
}

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