@font-face {
  font-family: 'MyFont';
  src: url('fonts/myfont.woff2') format('woff2');
}

body {
  position: relative;
  background-color: black;
  color: black;
  font-family: Verdana;
  height: 100%;
  margin: 0;
}

.idk {
  display: flex;
  height: 100vh;
  justify-content: center;
  align-items: center;
}

.container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container p {
  margin: 0;
  width: fit-content;
  color: white;
  font-family: "Pixelify Sans", sans-serif;
  font-size: 24pt;
}

.console-cursor {
  border-right: .5em solid white;
  animation: blink-caret 1s step-end infinite;
}

canvas {
  padding: 30px;
  display: block;
  width: 100vw;
  height: 100vh;
  image-rendering: pixelated;
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.2);
}

#gameCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  display: block;
  image-rendering: pixelated;
  pointer-events: none;
}

@keyframes blink-caret {
  from, to { border-color: transparent }
  50% { border-color: white; }
}

.neoimg {
  position: fixed;
  bottom: 20px;
  right: 20px;
  height: 66px;
  width: auto;
  z-index: 9999;
  cursor: pointer;
  image-rendering: pixelated;
}

.tohomebtn {
  position: fixed;
  bottom: 90px;
  right: 20px;
  height: 66px;
  width: auto;
  z-index: 9999;
  cursor: pointer;
  image-rendering: pixelated;
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

.blink-image {
  animation: blink 2s infinite;
}