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

 
.highlight {
  background-color: lightblue;
}

p, h1, h2 {
  text-align: center;
}

body {
  
  background: url(https://benniebloom.neocities.org/im-rly-on-that-shit.jpeg) no-repeat center center fixed;
  background-size: cover;
  color: black;
  font-family: Helvetica;
  font-weight: bold;
  margin-top: 250px
}
 h1 {
   text-align: center;
  position: absolute;
  display: block;
  left: 17%;
  top: 10%;
  font-size: 70px;
  color:black;
  text-shadow: 1px 1px white;
 }
 
 ol { 
   
   padding-left: 0px;
 } 
 
 .list {
   background-color: lightblue;
   width:175px;
   height:55px;
   text-align:left;
   padding:0px;
   margin-left:620px;
 }
 
 .sidebar  {
   position: absolute;
   right: 1%;
   top: 40%;
  background-color: lightblue;
  text-shadow:1px 1px white;
  width: 200px;
  height: 500px;
  margin-right: 5px;
  border-style: solid;
  border: 8px solid black;
  padding: 50px;
  
 }
 .table { float: left;
 background-color: lightblue;
 text-shadow:1px 1px white;
 
   
 }
 ol{
   margin-left:66px;
 }
 
/* Contains the columns */
.row{
  margin-left:-20px;
  margin-bottom:-20px;
  zoom:1;
}
.row:before,
.row:after{
  content:"";
  display:table;
}
.row:after{
  clear:both;
}

/* Base Column */
.col{
  float:left;
  margin-bottom:0;
  padding-left:20px;
  position:relative;
  width:100%;
}

/* Size the columns in the row */
.col-90 {width:90%}
.col-80 {width:80%}
.col-75 {width:75%}
.col-66 {width:66.6666%}
.col-60 {width:60%}
.col-50 {width:50%}
.col-40 {width:40%}
.col-33 {width:33.3333%}
.col-25 {width:25%}
.col-20 {width:20%}
.col-10 {width:10%}