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

html, body {
    height: 100%;
}

body {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #1a2e1a;
    font-family: Georgia, 'Times New Roman', serif;
    color: #c8e6c8;
}

.container {
    text-align: center;
    padding: 2rem;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: normal;
    letter-spacing: 0.04em;
    color: #a8d5a2;
    text-shadow: 0 0 40px rgba(120, 200, 100, 0.25);
    margin-bottom: 1rem;
}

.tagline {
    font-size: clamp(1rem, 3vw, 1.5rem);
    font-style: italic;
    color: #6aab6a;
    letter-spacing: 0.12em;
}
