body {
  margin: 0;
}

body,
html,
iframe {
  display: block;
  border: none;
  width: 100vw !important;
  height: 100vh !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  outline: 0 !important;
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}
:root {
  --themecolor: #bbf7068f;
  --reversecolor: rgba(124, 233, 248, 0.35);
}

/* The below is outdated.
iframe {
  display: block;
  border: none;
  height: 100vh;
  width: 100vw;
}
*/

/* The following Styles should never be shown.  They are To test to see if the CSS is working */
h1 {
  color: #50c878;
  animation: slideLeft 4s ease-in-out;
}

@keyframes slideLeft {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
