.video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
  body {
    background-color: #2c2e3e;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    color: white;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    font-weight: 200;
  }
  
  #contactform {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    z-index: 500;
    width: 400px;
    height: 95vh;
  }
  
  #contactform input {
    border: 0;
    margin-bottom: 10px;
    padding: 20px;
    font-size: 17px;
    background-color: transparent;
    color: white;
    font-weight: 200;
    border: 1px solid white;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
      Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  }
  
  #contactform input::placeholder {
    color: white;
    opacity: 0.8;
  }

  #submit {
    padding: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    outline: 1px solid white;
    outline-offset: -1px;
    border: 0;
    cursor: pointer;
    background-color: transparent;
    color: white;
    font-weight: 200;
    font-family: Futura;
    font-size: 15px;
    position: relative;
  }
  #submit:focus{
    outline-color: aqua;
  }