html, body{
  padding: 0;
  margin: 0;
}

 .rotateWarning{
  display: none;
 }

@media screen and (orientation: landscape){
  .rotateWarning{
      position: fixed;
      width: 100vw;
      height: 100vh;
      z-index: 99999999999;
      background-color: white;
      display: flex;
      justify-content: center;
      align-items: center;
      color: black;
      font-size: 5vw;
  }
}