/*Styling the Title Bar*/
  .Title {
    font-family: 'BioRhyme', serif;
    color: #2e2e2e;
    text-align: center;
  }

/*Remove Underline from links*/
  *:link{
    text-decoration: none;
  }

/*Hide EasterEgg*/
  #TopLine {
    font-size: 5px;
    visibility: hidden;
  }
/*Styling The Navigation Bar at the top*/
  #navigation li{
    display: inline;
    list-style-type: none;
    font-size: 25px;
    font-family: 'Inknut Antiqua', serif;
    color: #ffffff;
  }

  #navigation{
    text-align: center;
    background-color: deepskyblue;
    position: fixed;
    width: 100%;
    top: -35px;
    left: -35px;
    height: 50px
  }

/*Change box-sizing and BGColor*/
  body {
    box-sizing: border-box;
    margin: 0;
    background-color: #71caef;
  }

/*Info Box*/
  .InfoBox {
    background-color: white;
    border-style: solid;
    border-width: 3px;
    width: 285px;
    margin-left: auto;
    margin-right: 25px;
  }

  .Progress {
    margin-left: auto;
  }

  /*Styling Text*/
    .InfoBox h2 {
      font-family: Baloo, sans-serif;
      text-align: center;
    }

    .InfoBox H3 {
      display: inline;
      font-family: 'BioRhyme', serif;
    }