/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #c0c0c0;
  color: black;
  font-family: 'Times New Roman', serif;
  padding: 10px 30px 10px 30px;
}

/* Header/Blog Title */
.header {
  
  text-align: center;
}


/* The navbar container */
.topnav {
  overflow: hidden;
}

/* Navbar links */
.topnav a {
  float: left;
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

nav {
  display: block;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
}
nav a {
  font-size: 16px;
}




/*Special containers */

.biblist {
  padding-left: 40px;}

.callout {
  padding-left: 40px;}



/* Footer */
.footer {
  padding: 20px;
  text-align: center;
  margin-top: 20px;
  font-size: smaller;
}

    @font-face {
        font-family: Luminari;
        src: url('https://terriblelizard.info/Luminari-Regular.ttf');
            }

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

                #leftSidebar {
                    order: 2;
                }

                #rightSidebar {
                    order: 3;
                }
                
           
                

                #navbar ul {
                    flex-wrap: wrap;
                }
            }