  body {
    margin: 0 auto;
    padding: 0px;
    overflow: hidden;
  }
  #overlay{
    position: fixed;
    background: rgba(255, 255, 255, 0.25);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    box-shadow: 0 0 10px 5px black inset;
    z-index: 1;
  }
  #backgroundVideo{
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  #introText{
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
  }
  .blueButton{
    background-color: #170df2;
    color: white;
    padding: 10px 20px;
    border: 0px;
    cursor: pointer;
    font-family: "Quicksand", sans-serif;
  }
  .blueButton:hover{
    background-color: white;
    color: #170df2;
    border: 1px solid #170df2;
  }
  .slideVisible{
    display: block !important;
    opacity: 1;
  }
  .slideHidden{
    display: none !important;
    opacity: 0;
  }
  .slideFadeIn{
    -webkit-animation: fadein 0.5s;
    animation: fadein 0.5s;
  }
  .slideFadeOut{
    -webkit-animation: fadeout 0.5s;
    animation: fadeout 0.5s;
  }
  #main{
    position: absolute;
    top: 0;
    height: calc(100% - 65px);
    width: 100%;
    background-color: black;
  }
  #footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 65px;
    text-align: center;
    font-size: 16px;
    line-height: 1.3;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    box-shadow: 0 0 15px 5px black;
    background-color: black;
    color: white;
  }
  @media only screen and (max-width: 375px) {
    #footer{
      font-size: 13px;
      line-height: 1.2;
    }
  }
  .footerText{
    margin: 0px;
    position: absolute;
    left: 50px;
    right: 50px;
    top: 50%;
    transform: translateY(-50%);
  }
  .footerLink {
    color: #3899ec;
  }
  .backButton{
    float: left;
    text-align: left;
  }
  .nextButton{
    float: right;
    text-align: right;
  }
  .navigationButton{
    margin: 20px 15px;
    background-color: #170df2;
    color: white;
    border: 0px;
    cursor: pointer;
    height: 25px;
    width: 25px;
  }
  .navigationButton:hover{
    background-color: white;
    color: #170df2;
    border: 1px solid #170df2;
  }
  .navigationButtonDisabled{
    background-color: grey;
    cursor: auto;
  }
  .navigationButtonDisabled:hover{
    background-color: grey;
    color: white;
    border: 0px;
  }
  #map{
    position: absolute;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
  }
  #legend{
    position: absolute;
    top: 15px;
    left: 50%;
    height: 45px;
    background-color: white;
    border-radius: 10px;
    width: calc(100% - 30px);
    max-width: 300px;
    transform: translateX(-50%);
    display: none;
    box-shadow: 0 0 5px 1px #c3c3c3
  }
  .legendText{
    color: black;
    font-size: 12px;
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
  }
  #leftLegend{
    margin: 23px 0px 0px 15px;
    float: left;
  }
  #rightLegend{
    margin: 23px 15px 0px 0px;
    float: right;
  }
  #legendGradient{
    position: absolute;
    left: 50px;
    right: 50px;
    height: 10px;
    top: 25px;
    opacity: 0.5;
    background: linear-gradient(to right, white, #d400ff);
  }
  #legendTitle{
    text-align: center;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 8px;
  }
  #summary{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: black;
  }
  #summaryContainer{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    right: 0px;
    text-align: center;
  }
  .finalButton{
    min-width: 200px;
    margin: 8px;
    border: 1px solid black;
  }
  .buttonishLink {
    background-color: #170df2;
    color: white;
    padding: 10px 20px;
    border: 0px;
    cursor: pointer;
    font-family: "Quicksand", sans-serif;
    min-width: 200px;
    margin: 8px;
    border: 1px solid black;
    font-size: 13.33px;
    text-decoration: none;
    box-sizing: border-box;
    display: inline-block;
  }
  .buttonishLink:hover{
    background-color: white;
    color: #170df2;
    border: 1px solid #170df2;
  }
  
  @-webkit-keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @keyframes fadein {
    from {opacity: 0;}
    to {opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
  }
  
  @keyframes fadeout {
    from {opacity: 1;}
    to {opacity: 0;}
  }
  #videoCredit{
    position: absolute;
    bottom: 15px;
    padding: 0px 10px;
    right: 15px;
    text-align: center;
    z-index: 3;
    font-family: "Quicksand", sans-serif;
    color: white;
    font-size: 14px;
  }