:root {
  --accent: #00ffea;
}

body {
  background-color: black;
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  font-family: monospace;
  color: var(--accent);
}

#content-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95vw;
  height: 95vh;
}

#display-box {
  width: 90vmin;
  aspect-ratio: 3 / 2;
  border: 2px solid var(--accent);
  box-shadow: 0 0 20px var(--accent);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#display-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
