@font-face {
    font-family: 'Continuum';
    src: url('/fonts/contm.woff2') format('woff2'),
    url('/fonts/contm.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


@font-face {
    font-family: 'Continuum';
    src: url('/fonts/contb.woff2') format('woff2'),
    url('/fonts/contb.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

:root {
    --bg-color: black;
    --text-color: white;
    --link-bg-color: white;
    --link-color: blue;
    --link-hover: darkblue;
    --heading-color: #222000;
    --button-text: black;
}

body.light-mode {
    --bg-color: white;
    --text-color: black;
    --link-bg-color: black;
    --link-color: blue;
    --link-hover: darkblue;
    --heading-color: #222000;
    --button-text: white;
}


body {
    background-color: var(--bg-color);
    min-height: 100vh;
    margin: 0;
    text-align: center;
    padding: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    font-family: 'Continuum', sans-serif;
}

a {
    color: var(--text-color)
}

a:visited {
    color: var(--text-color)
}

button {
    padding: 7px 15px;
    display: inline-block;
    font-size: 1rem;
    margin: 7px 7px;
    border: none;
    background-color: var(--link-bg-color);
    text-align: center;
    color: var(--button-text);
    border-radius: 4px;
    transition: transform 0.3s ease;
    font-family: inherit;
}

#submit {
    font-family: inherit;
    transform: scale(1.0);
    transition: none;
}

button:hover {
    transform: scale(1.1);
}


