/* Global */
body {
  margin: 0;
  background-color: black;
  color: #00ff00;
  font-family: monospace;
}

/* Terminal */
#terminal {
  padding: 20px;
  background-color: black;
  color: #00ff00;
  font-family: monospace;
  min-height: 100vh;
  box-sizing: border-box;
}

#terminal-text {
  white-space: pre-wrap;
  word-wrap: break-word;
}

#terminal.hidden {
  display: none;
}

/* Site Content */
#site-content {
  display: block; /* keep block so JS can animate children */
  padding: 20px;
}

/* Hide typed lines by default */
.typed-line {
  opacity: 0;
  white-space: pre-wrap;
  transition: opacity 0.3s ease-in;
}

/* Header */
.header-container {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #00ff00;
}