/* styles.css */
body {
  margin: 0;
  padding: 0;
  background-color: #1e1e1e;
  color: #00ff00;
  font-family: 'Consolas', 'Courier New', monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.terminal {
  width: 800px;
  height: 400px;
  background-color: #000000;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
  display: flex;
  flex-direction: column;
}

.terminal-header {
  background-color: #2b2b2b;
  padding: 10px 20px;
  font-weight: bold;
  font-size: 14px;
  border-bottom: 1px solid #444;
}

.terminal-body {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  position: relative;
}

.output {
  white-space: pre-wrap;
  word-wrap: break-word;
  margin-bottom: 5px;
  display: block;
}

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

@keyframes blink {
  50% {
    background-color: transparent;
  }
}


footer {
  background-color: #000000;
  text-align: center;
  padding: 10px;
  color: #00ff00;
  font-family: 'Consolas', 'Courier New', monospace;
  /* border-top: 1px solid #444; */
  position: relative;
}

footer .social-links a {
  color: #00ff00;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s ease;
}

footer .social-links a:hover {
  color: #FF00FF;
}
