body {
  margin: 0;
  padding: 50;
  background: rgb(0, 0, 0);
  background-size: cover;
  font-family: "ocr-a-std", monospace;
}

/* Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: fix;
  justify-content: space-evenly;
  padding: 0 0px;
  box-sizing: border-box;
  backdrop-filter: blur(5px);
}

/* Links */
nav a {
  color: white;
  text-decoration: none;
  margin: 0 120px;
  font-size: 18px;
  transition: 0.3s;
}

nav a:hover {
  color: #000000;
}

/* Logo */
.logo {
  height: px;
  cursor: pointer;
}

/* Main Content Container */
.main-container {
  padding-top: 120px;
  padding-bottom: 50px;
  min-height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Terminal Window Container */
.terminal-container {
  width: 100%;
  display: flex;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.terminal-window {
  width: 90%;
  max-width: 800px;
  background: #000;
  border: 3px solid #fff;
  padding: 30px;
  position: relative;
  box-shadow: 0 0 50px rgba(255, 255, 255, 0.3);
  margin: 0 auto;
}

.terminal-header {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff;
}

.terminal-title {
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 2px;
}



.terminal-content {
  color: #0f0;
  font-size: 0.95rem;
  line-height: 1.8;
  min-height: 300px;
}

.terminal-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.cursor {
  display: inline-block;
  width: 10px;
  height: 20px;
  background: #0f0;
  animation: blink 1s infinite;
  margin-left: 2px;
}

@keyframes blink {

  0%,
  50% {
    opacity: 1;
  }

  51%,
  100% {
    opacity: 0;
  }
}

/* Responsive */
@media (max-width: 768px) {
  .terminal-window {
    width: 95%;
    padding: 20px;
  }



  .terminal-content {
    font-size: 0.85rem;
  }
}