
:root{
  --youtube: #ff2b2b;
  --twitch: #9146ff;
}

html,body{
  height:100%;
  margin:0;
  background:#000;
  font-family: 'Undertale', 'Courier New', Courier, monospace;
  color:#fff;
}

#terminal{
  position:fixed;
  left:18px;
  top:18px;
  max-width:36ch;
  padding:14px 16px;
  background:transparent;
  border-radius:6px;
}

.line{
  font-size:18px;
  line-height:1.2;
  white-space:pre-wrap;
  min-height:1.4em;
}

.cursor{
  display:inline-block;
  width:.6ch;
  background:#fff;
  margin-left:3px;
  animation:blink 900ms steps(1) infinite;
  vertical-align:bottom;
  height:1.1em;
}

@keyframes blink{
  0%{opacity:1}
  50%{opacity:0}
  100%{opacity:1}
}

#links{
  margin-top:10px;
  display:flex;
  flex-direction:column;
  gap:6px;
}

.link{
  color:#ddd;
  text-decoration:none;
  padding:6px 8px;
  border-radius:4px;
  display:inline-block;
}

.link[data-color="youtube"]{ color: var(--youtube); }
.link[data-color="twitch"]{ color: var(--twitch); }

.link.selected{
  text-decoration: underline;
  text-underline-offset:6px;
}

.hint{
  margin-top:8px;
  font-size:12px;
  color:#ddd;
}

@media (max-width:480px){
  #terminal{ left:10px; top:10px; padding:10px; max-width:90vw }
  .line{ font-size:16px }
}

