*{
  padding: 0%;
  margin: 0%;
  box-sizing: border-box;
}

#video {
    width: 100%;
    height: 100%;
    max-height: 100vh;
    max-width: 100vw;
}

#start{
  transition: 0.1s;
  background: linear-gradient(#00ffff,#0a6fe9);
  border: none;
  color: white;
  border-radius: 10px;
  font-size: large;
  width: 100px;
  height: 100px;
}

#start:hover{
  transition: 0.1s;
  width: 105px;
  height: 105px;
  transition: 0.2s;
  box-shadow: 0 0 0 0.25rem #00ffff40;
}

#start:active{
  transition: 0.1s;
  box-shadow: 0 0 0 0.25rem #00ffff40;
}

body{
    /*background: linear-gradient(#05FFFF,#013575);*/
    height: 100vh;
    width: 100vw;
    background-color: #191919;
}

#buttoncontainer{
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
}