body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  margin: 0;
  width: 100%;
  height:20%;
  padding: 0;
  overflow: hidden;
  display: flex;
   /*-ms-overflow-style: none;  /* IE and Edge */
  
}
body::-webkit-scrollbar {
  display: none;
}
.splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: red;
  z-index: 200;
  color: white;
  text-align: center;
  line-height: 90vh;
}

.splash.display-none {
  position: fixed;
  
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: red;
  z-index: -10;
  color: white;
  text-align: center;
  line-height: 90vh;
  transition: all 0.5s;
}

@keyframes fadeIn {
   to {
     opacity: 1;
   }
}

.fadeIn {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}



#iframeess::-webkit-scrollbar {
  display: none;
}