@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@400..900&family=Share+Tech+Mono&display=swap");

html,
body,
#body-container {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;

  font-family: "Cinzel", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: white;
}

#instruction {
  display: block;

  width: 30%;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  overflow: visible;
}

#exit {
  display: block;

  width: 30%;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, 0);

  color: yellow;
  text-align: center;
  font-size: 30px;
  text-decoration: none;

  overflow: visible;
}

#aim {
  display: none;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 5px;
  height: 5px;
}

#target-info {
  display: none;

  position: absolute;
  top: 50%;
  left: 52%;
  transform: translate(0, -50%);

  color: white;
  font-family: "Courier New", Courier, monospace;
}

#message-window {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 30%;
  height: 20%;

  overflow-y: scroll;
  overflow-x: hidden;
}

#message-window p {
  color: white;
  font-family: "Courier New", Courier, monospace;

  margin: 0 10px 0;
}
