@font-face {
  font-family: "pixel";
  src: url("./assets/fonts/pixel.woff2");
}

html,
body {
  background-color: rgb(31, 31, 31);
  color: white;
  font-family: pixel;
  text-align: center;
  overflow: hidden;
  height: 100%;
}

#ratLabLink {
  position: absolute;
  top: 2vh;
  left: 2vh;
  margin: 0;
  font-size: 4vh;
  text-decoration: none;
  color: lime;
}

#ratLabLink:hover {
  color: rgb(151, 255, 151);
}

h1 {
  font-size: 4vh;
  z-index: 3;
  color: aqua;
  text-decoration: underline;
}

iframe {
  z-index: 2;
  width: 80%;
  height: 80vh;
  max-width: 130vh;
  border: solid 2px white;
  border-radius: 1vh;
  box-shadow: 0 0 10vh rgba(0, 0, 0, 0.5);
}

.fullscreenEnabled {
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  border: none;
  max-width: 100%;
}

#fullscreen {
  position: absolute;
  top: 2vh;
  right: 2vh;
  z-index: 1;
  font-family: pixel;
  font-size: 3vh;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: solid 1px white;
  border-radius: 0.5vh;
  padding: 2vh 2.5vh 1vh 2.5vh;
  color: white;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

#fullscreen:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

#fullscreen:active {
  background-color: rgba(255, 255, 255, 0.2);
}
