/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #e6e6e6;
  font-family: monospace;
  overflow: hidden;
  height: 100vh;
}

/* LOGO */
#logo-wrap {
  position: absolute;
  top: 40px;
  left: 88.5%;
  transform: translateX(-50%);
  z-index: 10;
}

#logo-wrap img {
  width: 28vw;
  max-width: 380px;
}

/* TERMINAL */
#terminal {
  position: absolute;
  top: 48%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38vw;
  max-width: 520px;
  font-size: 14px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  white-space: pre-line;
}

/* LINKS */
#terminal a {
  color: #2ea3ff;
  text-decoration: none;
}

#terminal a:hover {
  color: #00ffff;
  text-decoration: underline;
}

/* ROBOT */
#bottom-character {
  position: fixed;
  bottom: 0;
  left: -80px;
}

#bottom-character img {
  width: 45vw;
  max-width: 650px;
}

/* MOBILE */
@media (max-width: 768px) {
  body { overflow-y: auto; height: auto; flex-direction: column; align-items: center; }
  #logo-wrap { position: relative; top: 20px; transform: none; margin-bottom: 30px; }
  #logo-wrap img { width: 260px; }
  #terminal { position: relative; top: auto; left: auto; transform: none; width: 90%; max-width: 420px; margin-bottom: 40px; }
  #bottom-character { display: none; }
}