@import url('https://fonts.googleapis.com/css2?family=Baloo+2:wght@400..800&display=swap');
@media (prefers-color-scheme: light) {
    body {
        color: #000;
        background-color: #fff;
    }
}
@media (prefers-color-scheme: dark) {
    body {
        color: #fff;
        background-color: #1e1e1e;
    }
}
body {
    text-align: center;
    font-family: 'Baloo 2', sans-serif;
}
a, a:link, a:visited {
    color: #0080ff;
    text-decoration: none;
}
a:hover {
    color: #0080ff;
    text-decoration: underline;
}
a:active {
    color: #004080;
}
button {
    font-family: 'Baloo 2', sans-serif;
    border-radius: 100px;
    background-color: #909090;
    border: 2px solid #000;
}