  body {
    margin: 0 auto;
    padding: 0px;
    overflow: hidden;
  }
  #overlay{
    position: fixed;
    background: rgba(255, 255, 255, 0.65);
    width: 100%;
    height: 100%;
    left: 0px;
    top: 0px;
    box-shadow: 0 0 10px 5px white 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: 100%;
    width: 100%;
  }
  #main iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  #summary{
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: white;
  }
  #summaryContainer{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0px;
    right: 0px;
    text-align: center;
  }
  .finalButton{
    min-width: 200px;
    margin: 8px;
    border: 1px solid white;
  }
  .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 white;
    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-size: 14px;
    font-family: "Quicksand", sans-serif;
    color: black;
  }
  .lightBlueLink {
    color: #3899ec;
  }