body {
    background-color: rgb(0, 31, 75);
    padding: 0;
    margin: 0;
  }
  @font-face {
    font-family: NewYork;
    src: url(fonts/NewYork.otf);
 }
 
 * {
    font-family: NewYork;
    font-weight:bolder;
 }

 h1 {
    display: flex;
    justify-content:center;
    font-family: NewYork;
    color: rgb(255, 255, 255);
    text-align: top;
    max-height: 100%;
    font-size: 35px;
 }

 #homevideo {
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .container {
    /* Setup */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;;
  }
  
  a {
    padding: 15px 30px;
    color: #21f333;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-decoration: none;
    font-size: 24px;
    transition: 0.2s;
  }

a:hover {
    color: #258459;
    background: #21f333;
    box-shadow: 0 0 10px #21f333,0 0 40px #21f333,0 0 80px #21f333;
    
}

a span {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -25;
    margin-top: -25;
}

