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

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 80px 24px;
    background-color: #1c2b1c;
    font-family: system-ui, -apple-system, sans-serif;
    color: #c8dcc4;
}

.card {
    max-width: 480px;
    width: 100%;
    text-align: center;
}

h1 {
    font-size: 1.75rem;
    font-weight: normal;
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    color: #dfeeda;
}

.blurb {
    font-size: 1rem;
    line-height: 1.6;
    color: #7a9a74;
    margin-bottom: 48px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.links a {
    display: block;
    padding: 16px 20px;
    background: #243824;
    border: 1px solid #3a5a38;
    border-radius: 8px;
    text-decoration: none;
    color: #c0d8bc;
    font-size: 1rem;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.links a:hover {
    border-color: #5a9a58;
    box-shadow: 0 2px 10px rgba(90, 154, 88, 0.2);
    background: #2c4430;
}
