body {
    margin: 0;
    min-height: 100vh;
    display: grid;
    place-items: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background: #141312;
    color: #f5eedc;
}

main {
    max-width: 32rem;
    padding: 2.5rem;
    background: #1e1c19;
    border: 2px solid #38332c;
    border-radius: 8px;
}

h1 {
    font-size: 2rem;
    margin: 0 0 0.75rem;
}

a {
    color: #e5a93c;
    text-decoration: none;
    font-weight: 600;
}

a:hover {
    text-decoration: underline;
}

ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 1.25rem;
    margin-top: 1.5rem;
}