* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background: #111;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Retropix", monospace;
  color: #00ff66;
  background: #111;
}

.hidden {
  display: none;
}

#gttTutorialOverlay {
  position: fixed;
  inset: 0;
  background: black;
  z-index: 9999;

  display: flex;
  justify-content: center;
  align-items: center;
}

#gttTutorialOverlay.hidden {
  display: none;
}

#gttTutorialVideo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

#skipGttTutorial {
  position: absolute;
  top: 20px;
  right: 20px;
}

.computer-screen {
  width: min(100vw, 100vh);
  height: fit-content;
  display: flex;
  gap: 2px;
  flex-direction: column;
  align-items: center;
  padding: 5px;
  background: black;
  border: 2px solid #00ff66;
  overflow: hidden;
  }

.top-title {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Lucida Console", monospace;
  white-space: pre;
  font-size: clamp(6px, 1.2vw, 14px);
  overflow: hidden;
  line-height: 0.6;
}
  
.menu-bar{
  width: 100%;
  height: 40px;
  border: 2px solid #00ff66;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-button{
  background: transparent;
  border: none;
  font-family: inherit;
  color: #00ff66;
  font-size: 20px;
  padding: 0;
  margin: 0;
  line-height: 1;
}

.menu-button:hover {
  background: #00ff66;
  color: black;
}

.menu-button.active {
  background: #00ff66;
  color: black;
}
  
.main-panel{
  width: 100%;
  height: 350px;
  border: 2px solid #00ff66;
  padding: 10px;
  background-image: url("assets/rat.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.info-box{
  width: 100%;
  height: 100%;
  padding: 10px;
  background: rgba(0, 0, 0, 0);
  color: #00ff66;
  overflow: auto;
  box-sizing: border-box;
}

.info-box.active{
  background: rgba(0, 0, 0, 1);
}

.gif-screen{
  display: flex;
  justify-content: center;
  align-items: center;
  
  width: 100%;
  height: 100%;
}

.terminal{
  width: 100%;
  height: fit-content;
  border: 2px solid #00ff66;
  padding: 10px;
  font-size: 16px;
}

.terminal-input-line input{
  background: transparent;
  border: none;
  outline: none;
  color: inherit;
  font-family: inherit;
}