body {
  font-family: "Courier New", Courier, monospace;
  background-color: #282c34;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
  margin: 0;
}

.terminal {
  background-color: #000;
  border: 1px solid #00ff00;
  border-radius: 5px;
  width: 100%;
  height: 93%;
  padding: 20px;
  color: #00ff00;
  font-size: 16px;
  overflow-y: auto;
}

.header {
  border-bottom: 1px solid #00ff00;
  padding-bottom: 5px;
  margin-bottom: 20px;
}

.cursor {
  background-color: #00ff00;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}

a {
  color: #00ff00;
  text-decoration: none;
  border-bottom: 1px dashed #00ff00;
  transition: 0.3s ease;
}

a:hover {
  color: #00cc00;
  background-color: #222;
  border-bottom: 1px solid #00cc00;
}

span[onclick]:hover {
  cursor: pointer;
  background-color: rgba(0, 255, 0, 0.2);
}
