html, body {
    height:100%;
    width:100%;
    margin:0;
    padding:0;
    overflow: hidden;
    -webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
text-decoration: none;
font-family: "Nunito";
text-shadow: 2px 2px 4px #000000;
}

video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}

  .content {
    max-width:550px;
    position:absolute;
    left: 50%;
    margin-left: -285px;
    color: #f1f1f1;
    padding: 20px;
  }
  
  .top{
    text-align:center;
    top: 0;
  }

  .top h1{
    outline: solid white 7.5px;
    box-shadow:4px 4px 12.5px #000000, inset 2px 2px 4px #000000;
  }

  .bottom{
    bottom: 0;
  }

  .bottom-bar{
    margin-top: 35px;
    display:flex;
    justify-content: space-between;
    font-weight: 500
  }

  h1{
    font: 800 2.5em Rubik;
  }

p{
    font: 1.3em Nunito;
}

a{
    color:#f1f1f1;
    text-decoration:underline;
}

a:hover{
    text-decoration:wavy underline;
}

@media only screen and (max-width: 600px) {
    .content {
        position:absolute;
        padding: 10px;
        left:0%;
        margin-left:0;
        margin: 10px;
      }
}