body{
    padding: 0;
    margin: 0;
}

.noselect {
  -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
     -khtml-user-select: none; /* Konqueror HTML */
       -moz-user-select: none; /* Old versions of Firefox */
        -ms-user-select: none; /* Internet Explorer/Edge */
            user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome, Edge, Opera and Firefox */
}

.header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 5px;
}

.logo{
    font-size: 35px;
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #000000;
}

.logo:active{
    color: #ffffff;
    background: #000000;
}

.menu-option{
    font-family: Arial, Helvetica, sans-serif;
    text-decoration: none;
    color: #000000;
    margin-right: 12.5px;
    font-size: 17.5px;
}

.menu-option:active{
    color: #ffffff;
    background: #000000;
}

.divider{
    width: 100%;
    height: 1px;
    background: #000000;
}

::-moz-selection { /* Code for Firefox */
  color: #ffffff;
  background: #000000;
}

::selection { /* Code for everything else */
  color: #ffffff;
  background: #000000;
}

.noscript{
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

#copyright{
    font-family: Arial, Helvetica, sans-serif;
}

@media (prefers-color-scheme: dark) {
    body{
        background: #000000;
    }

    .logo{
        color: #ffffff;
    }

    .logo:active{
        color: #000000;
        background: #ffffff;
    }

    .menu-option{
        color: #ffffff;
    }

    .menu-option:active{
        color: #000000;
        background: #ffffff;
    }

    .divider{
        background: #ffffff;
    }

    ::-moz-selection { /* Code for Firefox */
        color: #000000;
        background: #ffffff;
    }

    ::selection { /* Code for everything else */
        color: #000000;
        background: #ffffff;
    }

    #copyright{
        color: #ffffff;
    }
}