/* General Styling */
body {
  margin: 0;
  font-family: 'Courier New', monospace;
  background-color: #030b11;
  color: #00ff00; /* Green DOS text */
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  flex-direction: column;
}

/* Terminal Container */
#terminal {
  width: 90%;
  max-width: 900px; /* Ensure the terminal doesn't get too large */
  background-color: #000000;
  border: 2px solid #00ff00;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 255, 0, 0.5);
  padding: 1rem;
  box-sizing: border-box;
  overflow: hidden;
}

/* Header */
.terminal-header {
  background-color: #222222;
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-bottom: 2px solid #00ff00;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 5px;
}

.dot.red {
  background-color: #ff5c5c;
}

.dot.yellow {
  background-color: #ffbe00;
}

.dot.green {
  background-color: #26c93f;
}

.title {
  margin-left: auto;
  color: #ffffff;
  font-size: 1rem;
  text-align: center;
}

/* Terminal Body */
.terminal-body {
  padding: 1rem;
  text-align: left;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.line {
  margin: 0.5rem 0;
  animation: type 1.5s steps(40, end) forwards; /* Typing animation for text */
  white-space: nowrap;
  overflow: hidden;
  line-height: 1.4;
}

.line.green-text {
  color: #00ff00;
}

.line.finished {
  animation: none;
  white-space: normal;
  overflow: visible;
}

/* Typing Animation */
@keyframes type {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Highlight */
.highlight {
  color: #00ffaa;
}

/* Button Styling */
.button-container {
  text-align: center;
  margin-top: 1rem;
}

.button a {
  padding: 0.5rem 2rem;
  border: 2px solid #00ff00;
  border-radius: 5px;
  color: #00ff00;
  text-decoration: none;
  font-size: 1.1rem;
  display: inline-block;
  transition: background-color 0.3s ease;
}

.button a:hover {
  background-color: #00ff00;
  color: #000000;
}

/* Contract Box */
.contract-box {
  text-align: center;
  margin-top: 1rem;
  border: 2px solid #00ff00;
  padding: 0.5rem;
  border-radius: 5px;
}

/* ASCII Art */
.ascii-art {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
}

.ascii-image {
  max-width: 45%;
  height: auto;
  border: 1px solid #00ff00;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 255, 0, 0.7);
}

/* Footer */
footer {
  text-align: center;
  margin-top: 1rem;
  color: #00ffaa;
  font-size: 0.8rem;
}


