@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&family=Rubik+Mono+One&display=swap');

:root {
  --hue: 0;
}

body {
  margin: 0;
  height: 100vh;
  overflow: hidden;
  background: black;
  font-weight: 400;
  font-family: "Rubik Mono One", monospace;
  font-style: normal;
}

#screentext {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  color: white;
  text-align: center;
  user-select: none;
}

#dvd {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 350px;
  height: 154px;
  background: linear-gradient(hsl(var(--hue), 100%, 25%), hsl(var(--hue), 100%, 50%));
  mask-image: url(dvdlogo.png);
  mask-size: contain;
  mask-repeat: no-repeat;
  user-select: none;
}
