:root {
    --bg: #232323;
    --font-color: white;
}

body {
    background-color: var(--bg);
    color: var(--font-color);
    font-family: Arial, Helvetica, sans-serif;
    margin: auto;

    display: flex;
    min-height: 100svh;

    align-items: center;
    justify-content: center;
}

.content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    max-width: 500px;
}
