<style>

     @font-face {
        font-family: Nunito;
        src: url('/assets/fonts/Nunito-Regular.ttf');
    }

    @font-face {
        font-family: Nunito;
        src: url('/assets/fonts/Nunito-Bold.ttf');
        font-weight: bolder;
    }



    body {
        font-family: Nunito;
        font-size: 18px;

        margin: 0;
        background-color: #1A010D;
        /* Secondary text color: #A18E98 */
        background-size: 150%;
        color: #C89396;
        background-image: url('/assets/images/unnamed.png');    
    }


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

    #container {
        max-width: 1200px;
        /* this is the width of your layout! */
        /* if you change the above value, scroll to the bottom
and change the media query according to the comment! */
        margin: 0 auto;
        /* this centers the entire page */
    }

    /* the area below is for all links on your page
EXCEPT for the navigation */
    #container a {
        color: #fa7921;
        font-weight: bold;
    }
    #container a:hover{
        color: #f3474a;
        font-weight: bold;
    }

    #header {
        background-color: #1a1203;
        height: 150px;
        background-image: url('/assets/images/bgtest.png');
        background-size: auto 400%;
    }

    /* navigation section!! */
    #navbar {
        height: 40px;
        background-color: #322F31; 
        /* navbar color */
        width: 100%;
    }

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

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

    /* navigation links*/
    #navbar li a {
        color: #FE9920;
        /* navbar text color */
        text-decoration: none;
        /* this removes the underline */
    }

    /* navigation link when a link is hovered over */
    #navbar li a:hover {
        color: #f3474a; 
        text-decoration: underline;
    }

    #flex {
        display: flex;
    }


    /* this is just a cool box, it's the darker colored one */
    .box {
        text-align: left;
        color:#FCBC92;
        background-color: #4C2929; 
        border: 2px solid  #f85459;
        padding: 10px;
    }

    #grid-container {

        display: grid;
        grid-template-columns: 200px auto;
        grid-template-rows: auto auto 1fr;
        column-gap: 10px;
        row-gap: 0px;

    }
    #grid-item-sidebar1 {

        height: min-content;
        background-color: #463c4ce8; 
        color:#f85459;
        padding: 20px;
        font-size: 16px;
        text-align: center;

        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 2;
    }
    #grid-item-sidebar2 {
        ul {
            list-style-type: none;
        }
        height: min-content;
        background-color: #463c4ce8; 
        color:#f85459;
        padding: 20px;
        font-size: 16px;
        text-align: center;

        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 2;
        grid-row-end: 3;
    }
 
    #grid-item-empty {
        background-color: #463c4ce8;
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 3;
        grid-row-end: 4;
    }

    #grid-item-main {

        background-color: #04131Ae8; 
        padding: 20px;
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 4;
    }


    /*Flex container div*/
    .flex-container {
      display: flex;
      flex-wrap: wrap;
    }

    .flex-container > div {
        width: 50%;
        min-width: 400px;
    }

    /* handle class "centered" */
    .centered {
        ul {
            list-style-type: none;
        }
        img[src$=".png"] {
            width: 80%;
            border: 1px solid #FE9920;      
        }
        height: auto;
        text-align: center;
    }

    .blinkies{
        /*Code to remove anti-aliasing, https://stackoverflow.com/questions/14068103/disable-antialising-when-scaling-images*/
        image-rendering: optimizeSpeed;             /* STOP SMOOTHING, GIVE ME SPEED  */
        image-rendering: -moz-crisp-edges;          /* Firefox                        */
        image-rendering: -o-crisp-edges;            /* Opera                          */
        image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
        image-rendering: pixelated;                 /* Universal support since 2021   */
        image-rendering: optimize-contrast;         /* CSS3 Proposed                  */
        -ms-interpolation-mode: nearest-neighbor;   /* IE8+                           */
        transform: scale(2)

    }

   #footer {
        background-color: #322F31;
        color: #FCBC92;
        padding: 10px;
        /* this centers the footer text */
        text-align: center;
    }

    h1,h2,h3 {
        color: #f85459; 
    }

    h2 {
        font-size: 25px;
    }

    h3 {
        font-size: 22px;
    }

    strong {
        color: #f85459;
    }



@media only screen and (max-width: 1100px) {
    #navbar     ul {
        flex-wrap: wrap;
    }
    #grid-item-main {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 2;
        grid-row-end: 3;
    }
    #grid-item-sidebar1 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 2; 
    }
    #grid-item-sidebar2 {
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 3;
        grid-row-end: 4;
    }
    #grid-item-empty {
        display: none;
    }

}


@media only screen and (max-width: 400px) {
    .desktop {
        display: none;
    }
}
</style>