:root {
    /* colors */
    --content: #1E1E2E;
}
    

@font-face {
    font-family: IBM-Plex-Serif;
    src: url('fonts/IBM_Plex_Serif/IBMPlexSerif-Regular.ttf');
}

@font-face {
    font-family: IBM-Plex-Serif-Bold;
    src: url('fonts/IBM_Plex_Serif/IBMPlexSerif-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: IBM-Plex-Serif-Italic;
    src: url('fonts/IBM_Plex_Serif/IBMPlexSerif-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: IBM-Plex-Serif-BoldItalic;
    src: url('fonts/IBM_Plex_Serif/IBMPlexSerif-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

body {
    font-family: 'IBM-Plex-Serif', cursive;
    margin: 0;
    background-color: #1E1E2E;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 100pxpx;
    color: #F6FAFD;
}

* {
    box-sizing: border-box;
}

#container {
    max-width: 900px;
    /* 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: #89B4FA;
    font-weight: bold;
    /* if you want to remove the underline
    you can add a line below here that says:
    text-decoration:none; */
}

#flex {
    display: flex;
}

#content {
   width: 60%;
   margin: 0 auto;
   padding-top: 5px;
   padding-bottom: 25px;
   padding-left: 30px;
   padding-right: 30px;
   background-color: #181825;
}

/* what's this "order" stuff about??
allow me to explain!
if you're using both sidebars, the "order" value
tells the CSS the order in which to display them.
left sidebar is 1, content is 2, and right sidebar is 3! */

h1 {
  color: #CDD6F4;
}

h2
h3 {
  color: #A6ADC8;
}

h4
h5
h6 {
    color: #BAC2DE;
}

h1 {
    font-size: 25px;
}

strong {
    /* this styles bold text */
    color: #1B1616;
}

li {
  color: #f38ba8;
}

ol.e {list-style-type: lower-roman;}

ul.c {list-style-type: square;}

/* unvisited link */
a:link {
  color: #f38ba8;
}

/* visited link */
a:visited {
  color: #a6e3a1;
}

/* mouse over link */
a:hover {
  color: #f5c2e7;
}

/* selected link */
a:active {
  color: #89b4fa;
}



/* this is just a cool box, it's the darker colored one */
.box {
    background-color: #AA5679;
    border: 1px solid #9CB6D8;
    padding: 10px;
}

/* CSS for extras */
#topBar {
    width: 100%;
    height: 30px;
    padding: 10px;
    font-size: smaller;
    background-color: #13092D;
}


/* 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 {
    width: 100%;
    }

    /* 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;
    }
}
