/*
        shoutout vsc + fuck you adobe
*/

body {
    font-family: 'arial', sans-serif;
    margin: 0;
    background-color: #000000;
    color: #ffffff;
}

* {
    box-sizing: border-box;
}

/* layout css */

#container {
    max-width: 900px;
    margin: 0 auto;
}

#container a {
    color: #8bcfff;
    font-weight: bold;
    text-decoration: none;
}

#container a:visited {
    color: rgb(72, 157, 218);
    font-weight: bold;
    text-decoration: none;
  }

li::marker {
  content: "✝ ";
}

#flex {
    display: flex;
}

aside {
    background-color: #2c2c2c;
    width: 200px;
    padding: 20px;
    font-size: smaller;
}

main {
    background-color: #474747;
    flex: 1;
    padding: 20px;
    order: 2;
}

footer {
    background-color: #000000;
    width: 100%;
    height: 40px;
    padding: 10px;
    text-align: center;
}

h1,
h2,
h3 {
    color: #ffffff;
}

h1 {
    font-size: 25px;
}


/* CSS for extras */

#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #000000;
}

/* BELOW THIS POINT IS MEDIA QUERY */

/* 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 {
        width: 100%;
    }

/* the order of the items is adjusted here for responsiveness
since the sidebars would be too small on a mobile device */

    main {
        order: 1;
    }

    #leftSidebar {
        order: 2;
    }
}