    /* variables */

    :root {

        /* colors */

        --orange: #b35215;
        --black: #15141A;
        --dark-gray: #5B5B66;
        --gray:  #aba9a8;
        --light-gray: #ededf0;
        --dark-brown: #595048;

        --bg-color: hsl(20, 8%, 28%);

        scrollbar-color: var(--root-scroll-handle) var(--root-scroll-main);
    }

    @font-face {
        font-family: TF2;
        src: url('/fonts/TF2.ttf');
    }

    @font-face {
        font-family: TF2-Build;
        src: url('/fonts/TF2Build.ttf');
    }

    @font-face {
        font-family: TF2-Secondary;
        src: url('/fonts/TF2secondary.ttf');
    }

    @font-face {
        font-family: Nunito;
        src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
    }

    @font-face {
        font-family: Nunito;
        src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
        font-weight: bold;
    }

    @font-face {
        font-family: Nunito;
        src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
        font-style: italic;
    }

    @font-face {
        font-family: Nunito;
        src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
        font-style: italic;
        font-weight: bold;
    }

    *:focus-visible {
        border: #0c0a36;
    }

    body {
        font-family: 'Nunito', sans-serif;
        margin: 0;
        background-color: var(--bg-color);
        color: var(--black);
        background-image: url();
        cursor: url('blu-cursor.png'), auto;
        scrollbar-color: var(--body-scroll-handle) var(--body-scroll-main);
        font-size: 16px;
    }

    * {
        box-sizing: border-box;
    }

    #flex {
        display: flex;
    }

    main {
        background-color: var(--light-gray);
        flex: 1;
        padding: 20px;
        order: 2;
    }

    aside, .sidebar {
        background-color: var(--gray);
        width: 300px;
        padding: 20px;
        font-size: smaller;
    }

    #leftSidebar {
        order: 1;
    }

    #rightSidebar {
        order: 3;
    }

    #container {
        max-width: 950px;
        margin: 0 auto;
    }

    #container a {
        color: var(--orange);
        font-weight: bold;
        text-decoration: none;
    }

    #container a:hover {
        cursor: url('red-cursor.png'), pointer;
        text-decoration: underline;
    }

    #header {
        width: 100%;
        background-color: var(--orange);
        margin: auto;
        margin-top: 15px;
        margin-bottom: 15px;
        min-height: 150px;
    }

    /* footer start */

    footer {
        background-color: var(--dark-brown);
        width: 100%;
        height: auto;
        padding: 10px;
        margin-top: 10px;
        color: var(--gray);
        font-weight: bold;
        display: flex;
        justify-content: space-evenly;
    }

    /* footer end */

    section {
        background-color: var(--main-bg);
        padding: 15px;
        border: 5px solid var(--main-border);
        border-radius: 20px;
    }

    img {
        user-select: none;
    }

    h1, h2, h3, h4 {
        font-family: 'TF2-Build';
        color: var(--orange);
    }

    h2, h3 {
        text-align: center;
    }

    h1 {
        font-size: 32px;
        text-align: left;
    }

    h2 {
        font-size: 24px;
    }

    h3 {
        font-size: 20px;
    }

    h4 {
        font-size: 18px;;
    }

    strong {
        color: var(--orange);
    }

    hr {
       border:2px solid var(--gray);
    }

    ul {
        list-style-position: inside;
    }

    li {
        margin-top: 10px;
        margin-bottom: 10px;
    }
    
    #worm-container {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
    }

    .worm {
        width: 90%;
    }

    .conga {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        
    }

    .conga img {
        width: 11%;
    }

    #logo {
        background-image: url('tf2-logo.png');
        background-size: 100%;
        background-repeat: no-repeat;
        min-height: 200px;
        max-width: 400px;
        margin: auto;
    }


    /* BELOW THIS POINT IS MEDIA QUERY */

    /* so you wanna change the width of your page? 
by default, the container width is 900px.
in order to keep things responsive, take your new height,
and then subtrack it by 100. use this new number as the 
"max-width" value below
*/

    @media only screen and (max-width: 800px) {
        #flex {
            flex-wrap: wrap;
        }

        aside, .sidebar {
            width: 100%;
        }

        #favs {
            width: 100%;
        }

        .tab button {
            width: auto;
            min-width: 50px;
        }

        #abt-container {
            width: 100%;
        }

        main {
            order: 2;
        }

        #leftSidebar {
            order: 1;
            margin-right: 0;
            margin-bottom: 15px;
        }

        #rightSidebar {
            order: 3;
            margin-left: 0;
            margin-top: 15px;
        }

        #temporary {
            width: 100%;
        }
        
        .worm {
            width: 30%;
        }
    }