:root {
    --text: #0a0a0a;
    --background: #FAFAFA;
    --link: #444;
  }


@media (prefers-color-scheme: dark) {
    :root {
    --text: #dcdcdc;
    --background: #222222;
    --link: #fafafa;
    }
}

body {
    background-color: var(--background);
    color: var(--text);
    font-family: "Playfair Display", serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 16px;
    margin: 0;
}

a {
    font-size: 20px;
    color: var(--link);
    text-decoration: underline;
}

a:hover {
    color: var(--text);
    text-decoration: underline;
}

p {
    color: var(--link);
    line-height: 160%;
    text-align: center;
    margin: 0;
}

.container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 40px;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

.inline-link {
    font-size: 16px;
    text-decoration: underline;
    line-height: 24px;
}

.calendar-event {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    gap: 12px;
}

footer {
    margin-top: 24px;
}

footer a, span {
    font-size: 12px;
    text-decoration: none;
    color: var(--link);
}

path {
    fill: var(--text);
}