:root {
    --bg: #f8fafc;
    --text: #0f172a;
    --accent: #4f46e5;
}

body {
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    background-color: var(--bg);
    color: var(--text);
}

h1 {
    font-size: 28px;
    margin: 0 0 8px 0;
}

main {
    width: min(700px, 90%);
    border: 1px solid #87888e;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 0 20px #a9a9a9;
}

h2 {
    font-size: 16px;
    margin-bottom: 12px;
}

li {
    padding: 2.5px;
}

.link a {
    color: var(--accent);
    text-decoration: none;
}

.link a:hover {
    text-decoration: underline;
}
