.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    justify-content: center;
}

.title {
    font-size: 120%;
}

a,
a:visited {
    color: blue;
    transition: color 0.1s linear;
}

a:hover {
    color: rgb(0, 183, 255)
}

@media (prefers-color-scheme: dark) {
    body {
        background-color: black;
        color: white;
    }
}