:root {
    --top-color: #cacaca;
    --bottom-color: #060606;
}
@font-face {
    font-family: "MS Sans Serif";
    src: url("/fonts/SansSerif.ttf");
}

body {
    margin: 142px 0;
    font-family: "MS Sans Serif", sans-serif;
    -webkit-user-drag: none;
}

main, header {
    cursor: url("/images/arrow.cur"), auto;
}

#navbar {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;

    user-select: none;
}

#navbar-top {
    background-image: linear-gradient(to right, white, #B6C5EE);
    height: 90px;
}

#navbar-loc {
    padding-left: 10px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 20px;
    height: 20px;

    color: white;
    background-color: #5175CB;
    background-image: linear-gradient(90deg,#8DA6DE, #5175CB);
}

#navbar-sites {
    border-style: solid;
    border-color: #A9A9A9;
    border-width: 1px;
    border-top: 0px;
    border-left: 0px;
    border-right: 0px;
    height: 22px;
    background-color: #F1F1F1;
}

#navbar-sites ul {
    display: flex;
    list-style-type: none;
    margin: 0px;
    margin-left: 10px;
    padding: 0px;
}

#navbar-sites a {
    display: block;
    padding: 2px 0;
    text-decoration: none;
    color: black;
}

#navbar-sites a:hover {
    text-decoration: underline;
}

#navbar-sites li {
    position: relative;
    margin-right: 20px;
}

#navbar-sites li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: -10px;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: #A9A9A9;
}

img {
    user-select: none;
}

#footer {
    display: flex;
    position: fixed;

    bottom: 0px;
    left: 0px;
    right: 0px;
    height: 56px;

    align-items: end;

    background-image: linear-gradient(to right, #FFFFFF, #6487DB);

    border-top: 1px solid #6487DB;

    user-select: none;

    gap: 5px;
    overflow: hidden;
}

#footer ul {
    display: flex;
    list-style-type: none;
    margin: 0px;
    margin-left: 10px;
    padding: 0px;
}

#footer a {
    display: block;
    padding: 2px 10px;
    color: #0033CC;
    text-decoration: none;
    position: relative;
}

#footer a, #footer label {
    padding: 5px;
}

#footer a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background: #A9A9A9;
}

main {
    margin: 10px;
}

#buttons {
    display: flex;
    flex-direction: column;
    text-align: center;

    width: 150px;
    align-content: center;
    justify-content: center;

    gap: 5px;

    user-select: none;
}

#buttons a {
    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #bfbfbf;
    height: 30px;
    color: black;
    text-decoration: none;

    border-top: 2px solid #f9f9f9;
    border-left: 2px solid #f9f9f9;
    border-bottom: 2px solid #060606;
    border-right: 2px solid #060606;

    -webkit-user-drag: none;
}

#buttons a:hover {
    border-bottom: 2px solid var(--top-color);
    border-right: 2px solid var(--top-color);
    border-top: 2px solid var(--bottom-color);
    border-left: 2px solid var(--bottom-color);
}