/* Terminal Main Body */

.terminal-window {
  background-color: #0d1520;
  border-radius: 8px;
  border: 1px solid #30363d;
  flex: 1;
  display: flex;
  flex-direction: column;
  max-width: 900px;
  margin: 20px auto;
  width: 100%;
  overflow: hidden;
}

.terminal-header {
  background-color: #1a2535;
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #30363d;
  border-radius: 8px 8px 0 0;
}

.terminal-title {
  color: #8b949e;
  font-size: 14px;
  margin-left: 10px;
  flex-grow: 1;
}

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

/* Navigation Bar */

.terminal-nav {
  padding: 2px;
  display: flex;
  justify-content: center;
  gap: 25px;
  background-color: transparent;
}

.terminal-nav a {
  color: #79B8FF;
  text-decoration: none;
  font-size: 16px;
  transition: color 0.3s;
}

.terminal-nav a:hover {
  color: #FFB380;
}

/* Terminal Footer */

.terminal-footer {
    max-width: 900px;
    margin: 0 auto 20px;
    width: 100%;
}

.footer-content {
    background-color: #0d1520;
    border-radius: 8px;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #30363d;
}

.footer-name {
    color: #e5e5e5;
    font-size: 16px;
}

.footer-link {
    color: #79B8FF;
    text-decoration: none;
}

.footer-link:hover {
    color: #f8a059;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    color: #79B8FF;
    font-size: 24px;
    text-decoration: none;
    transition: color 0.3s;
}

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