html{
  height: 100%;
  width: 100%;
  margin: 0 0;
  padding:0;
  top: 0; left: 0;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  -ms-background-size: cover;
  background-size: cover;
  overflow-y: hidden;
  overflow-x: hidden;
}
body {
  width: 100%;
  height: 100vh;
  top: 0; left: 0;
  background: black;
  overflow-x: hidden;
  overflow-y: hidden;
}
#vscroll{
    width: 80vw;
    height: 100vh;
    border-radius:3vw;
    top: 15vh;
    left: 10vw;
    font-size: 2em;
    text-align: center;
    overflow-y: hidden;
}
#content{
  -ms-overflow-style: none;
}
#content::-webkit-scrollbar {
  display: none;

}