:root {
    /* --body-bg-image: url("/_assets/dragon.png"); */

    /* colors */
    --content: #43256E;
}

@font-face {
    font-family: Atkinson-Hyperlegible;
    src: url("../_fonts/Atkinson-Hyperlegible-Regular-102.ttf");
}

@font-face {
    font-family: Atkinson-Hyperlegible;
    src: url("../_fonts/Atkinson-Hyperlegible-Bold-102.ttf");
    font-weight: bold;
}

@font-face {
    font-family: Atkinson-Hyperlegible;
    src: url("../_fonts/Atkinson-Hyperlegible-Italic-102.ttf");
    font-style: italic;
}

@font-face {
    font-family: Atkinson-Hyperlegible;
    src: url("../_fonts/Atkinson-Hyperlegible-BoldItalic-102.ttf");
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'Atkinson-Hyperlegible', sans-serif;
    margin: 0;
    background-color: #550055;
    /* background-size: 65px;  */
    color: #fceaff;
    /* background-image: var(--body-bg-image); */
}


* {
    box-sizing: border-box;
}


/* the "container" is what wraps the entire website */

#container {
    max-width: 900px;
    margin: 0 auto;
}

#container a {
    color: #bf95d6;
    font-weight: bold;
}

#header {
    width: 100%;
    background-color: #572473;
    border-color: #bf95d6;
    height: 150px;

    /*I don't have a header image atm but the code is here*/
    background-image: var(--header-image);
    background-size: 100%;
}

#navbar {
    height: 40px;
    background-color: #572473 ;
    border: 3px solid #bf95d6;
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}

#navbar li {
    padding-top: 10px;
}

#navbar li a {
    color: #bf95d6;
    font-weight: 800;
    text-decoration: none;
}

#navbar li a:hover {
    color: #ffffff;
    text-decoration: underline;
}

#blinkie-hover p:hover{
    color:#f9e7e7;
    text-decoration: underline;
}

#blinkies {
    display: none;
}

#flex {
    display: flex;
}

aside {
    background-color: #572473;
    border: 3px solid #bf95d6;
    width: 200px;
    padding: 20px;
    font-size: smaller;
}


/* this is the color of the main content area,
between the sidebars! */
main {
    background-color: #572473;
    border: 3px solid #bf95d6;
    flex: 1;
    padding: 20px;
    order: 2;
}



*/ #leftSidebar {
    order: 1;
}

/* again, no rightSidebar, but the code is present */
#rightSidebar {
    order: 3;
}

footer {
    background-color: #572473;
    border: 3px solid #bf95d6;
    width: 100%;
    height: 60px;
    padding: 10px;
    text-align: center;
}

h1 {
    width: 100%;
    font-size: 35px;
    text-align: center;
    color: #bf95d6;
}

h2,
h3 {
    color: #bf95d6;
}



.box {
    background-color: #550055;
    border: 1px solid #bf95d6;
    padding: 10px;
}

.ss {
    width: 80%;
    height: auto;
}

.blink-rect {
    width: 150px;
    height: 20px;
}

.blink-sqr {
    width: 50px;
    height: 50px;
}

select {
    background-color: #550055;
    border: 1px solid #bf95d6;
    color: #fceaff;
}


#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #572473;
}


/* BELOW THIS POINT IS MEDIA QUERY */

@media only screen and (max-width: 800px) {
    #flex {
        flex-wrap: wrap;
    }

    aside {
        width: 100%;
        margin-top: 2%;
    }

    /* the order of the items is adjusted here for responsiveness!
since the sidebars would be too small on a mobile device.
feel free to play around with the order!
*/
    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }

    #navbar ul {
        flex-wrap: wrap;
    }
}