body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Special Elite', monospace;
  background: url('/images/mainBackground.png') no-repeat center center fixed;
  background-size: cover;
}

.landing-page {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

.content {
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.terminal {
  background-color: rgba(0, 0, 0, 0.5);
  color: #00ff00;
  font-family: 'Special Elite', monospace;
  padding: 20px;
  border-radius: 5px;
  width: 100%;
  max-width: 600px;
  box-sizing: border-box;
  text-align: center;
}

#output {
  min-height: 20px;
  word-wrap: break-word;
}

#cursor {
  display: inline-block;
  width: 10px;
  height: 20px;
  background-color: #00ff00;
  animation: blink 0.7s infinite;
  vertical-align: middle;
}

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

@media screen and (max-width: 768px) {
  .terminal {
    font-size: 14px;
    padding: 15px;
  }
}

@media screen and (max-width: 480px) {
  .terminal {
    font-size: 12px;
    padding: 10px;
  }
}