* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #f5f5f5;
    color: #222;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

.container {
    max-width: 700px;
    margin: 80px auto;
    padding: 0 24px;
}

h1 {
    font-size: 3rem;
    margin-bottom: .5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
}

p {
    margin-bottom: 1rem;
}

.links {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    color: #555;
}

a {
    color: #1a73e8;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.links {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    color: #555;

    align-items: flex-start;
}