:root{
    --header-image: url("#");
    --body-bg-image: url("https://bettysgraphics.neocities.org/images/backgrounds/water.gif");
    /* colors */
    --content: #25536e;
}

@font-face {
    font-family: Unispace;
    src: url("https://mojavesnow.neocities.org/fonts/unispace.otf");
}

@font-face {
    font-family: Alterna;
    src: url("https://mojavesnow.neocities.org/fonts/alterna.otf");
}

@font-face {
    font-family: Unispace;
    src: url("https://mojavesnow.neocities.org/fonts/unispaceit.otf");
    font-style: italic;
}

@font-face {
    font-family: Unispace;
    src: url("https://mojavesnow.neocities.org/fonts/unispacebd.otf");
    font-weight: bold;
}

@font-face {
    font-family: Unispace;
    src: url("https://mojavesnow.neocities.org/fonts/unispacebdit.otf");
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: "Unispace", sans-serif;
    margin: 0;
    background-color: #03171a;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 65px;
    color: #E6E6FA;
    background-image: var(--body-bg-image);
    vertical-align: middle;
    cursor: url(https://mojavesnow.neocities.org/cursors/mikuselect.png), auto;
}

* {
    box-sizing: border-box;
}

/* below this line is CSS for the layout */

#container {
    /* this is the width of your layout! */
    max-width: 1250px;
    margin: 0 auto;
    /* this centers the entire page */
}

#container a {
    color: #add8e6;
    font-weight: bold;
    cursor: url(https://mojavesnow.neocities.org/cursors/mikuselect.png), auto;
}

#container a:hover {
    color: #add8e6;
    text-decoration: line-through;
    cursor: url(https://mojavesnow.neocities.org/cursors/mikuselect.png), auto;
}

#header {
    margin-bottom: -100px;
    margin-top: -100px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

#navbar {
    border-radius: 25px;
    height: 30px;
    background-color: #0d98ba;
    border: outset #0d98ba 2px;
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
    font-size: 22px;
}

#navbar li {
    padding-top: 5px;
}

#navbar li a {
    color: #e7feff;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: #a49cba;
    text-decoration: line-through;
    cursor: url(https://mojavesnow.neocities.org/cursors/mikuselect.png), auto;
}

#flex {
    display: flex;
}

aside {
    background-color: #436b95;
    width: 200px;
    padding: 20px;
    font-size: smaller;
}

main {
    border-radius: 25px;
    background-color: #126180;
    flex: 1;
    padding: 20px;
    order: 2;
}

#leftSidebar {
    border-radius: 25px;
    order: 1;
    width: 250px;
    text-align: center;
}

#rightSidebar {
    border-radius: 25px;
    order: 3;
    width: 225px;
    font-size: 20px;
}

footer {
    border-radius: 25px;
    background-color: #0d98ba;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
}

h4 {
    font-size: 80px;
    font-family: 'Alterna';
    color: #5072a7;
    text-shadow: 4px 4px #00aae4;
}

h1,
h2,
h3 {
    color: #e7feff;
    text-align: center;
}

h1,
h2,
h3,
li {
    font-size: 15px;
}

p {
    font-size: 15px;
}

strong {
    color: #ed64f5;
}

.box {
    background-color: #006994;
    border: 1px solid #51788a;
    padding: 10px;
    overflow: auto;
    height: 125px;
    font-size: 12px;
}

.box2 {
    background-color: #13092d;
    border: 1px solid #ed64f5;
    padding: 10px;
    overflow: auto;
    text-align: center;
    height: 600px;
}

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092d;
}

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
    }

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #rightSidebar {
        order: 3;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
    
    .scrollbox::-webkit-scrollbar {
        width: 12px;
    }

    .scrollbox::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 8px;
    }

    .scrollbox::-webkit-scrollbar-thumb {
        background: #0f9d58;
        border-radius: 8px;
    }

    .scrollbox::-webkit-scrollbar-thumb:hover {
        background: #0b8043;
    }
}