  
  /*The box surrounding the entire page*/
  .mainBox{
    width: 960px;
    height: 1250px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
    background-color: #312f32;
    color: white;
  }
  
  
  /*The gray box surrounding the title*/
  .mainHeader{
    width: 960px;
    height: 150px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    background-color: #312f32;
  }
  
  
  .headerText{
    position: absolute;
    top: -15px;
    left: 25%;
  }
  
  
  /*The extra space outside the main box*/
  html{
    background-color: #dddddd;
    margin: 0 auto;
  }
  
  
  /*The main header text*/
  h1{
    font-size: 40px;
    color: white;
    text-shadow:
    -1.5px -1.5px 0 black,
    1.5px -1.5px 0 black,
    -1.5px 1.5px 0 black,
    1.5px 1.5px 0 black;
  }
  
  
  h3{
    color: #dadddb;
  }
  
  
  p{
    font-size: 20px;
  }
  
  
  /*Horizontal line code*/
  .horizontal-line{
    width: 30px;
    border-top: 1px solid white;
    border-color: #dadddb;
    margin: auto;
  }
  
  
  /*Vertical line code*/
  .vertical-line{
    height: 280px;
    border-right: 1px solid white;
    margin: auto;
    width: 10%;
  }
  
  .linkBox{
    width: 240px;
    height: 50px;
    border-right: 2px solid white;
    float: left;
  }
  
  
  /*First Wario image code*/
  img{
    display: block;
    margin: auto;
  }
  
  .tableOfContents{
    float: right;
    width: 430px;
    text-align: center;
    border: 0px solid black;
    align-items: center;
  }
  
  .introText{
    float: left;
    width: 465px;
    text-align: center;
    border: 0px solid black;
    padding: 5px 30px;
  }
  
  .footer{
    margin: auto;
    width: 960px;
    border-top: 1px solid white;
    position: absolute;
    top: 1245px;
  }
  
  
  /*FEEDBACK CSS STYLES*/
      
      
      .optionsBox{
        float: left;
      }
      
      
      .optionsBox2{
        float: right;
      }
      
      .cleared{
        clear: both;
      }