/* 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." */

@font-face {
    font-family: 'DepartureMonoNerdFont-Regular'; /*a name to be used later*/
    src: url('DepartureMonoNerdFont-Regular.otf'); /*URL to font*/
}


body {
  margin: 0 auto;
  max-width: 1250px;
  background-color: white;
  color: black;
  background-image: url("EarthBoundBG.png");
  font-family: DepartureMonoNerdFont-Regular;
    line-height: 1.5;
  padding: 4em 1em;
}

#toptext {
background-color: #32323a;
color: #ffffff;
border: 33px solid;
border-radius: 50px;
border-image: url(EBBorder.png) 33 round;
margin: 0 auto;
margin-left:30px;
margin-right: 30px;
text-align: center;
margin-bottom: 30px;
margin-top: 50px;
  
}

#sidebar {
background-color: #32323a;
color: #ffffff;
border: 33px solid;
border-radius: 50px;
border-image: url(EBBorder.png) 33 round;
  width: 250px; /* Set the width of the sidebar */
  position: absolute; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
 top: 75; /* Stay at the top */
 left: 20;
 overflow-x: hidden; /* Disable horizontal scroll */
 padding-top: 20px;
 margin-left: 30px
}

#mainbody {
  line-height: 1.5;
  padding: 2em 1em;  background-color: #32323a;
color: #ffffff;
border: 33px solid;
border-radius: 50px;
border-image: url(EBBorder.png) 33 round;
width: 750px;
margin-left: auto; 
margin-right: 30px;
font-size: 20px;
}

#bottomgifs {
margin: 0 auto;
max-width: 1250px;
text-align: center;
}