html {
    min-height: 100vh;
    background: #1a1b26;
}
body {
  margin: 0;
  font-family: 'Iosevka Web';
  background: #1a1b26;
  color: #7aa2f7;
  position: relative;
}


.desc {
  max-width: 600px;
  margin: 5vh auto 5vh auto; 
  padding: 0 20px;
  text-align: center; 
}

.desc .img {
   margin-bottom: 0.1rem;
}

.desc img {
  display: block;
  margin: 0 auto;
  border-radius: 30%;
  width: 150px; 
  height: auto;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.bio {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #e0def4;
}


#terminal {
  width: 600px;
  height: 400px;
  background: #191724;
  color: #e0def4;
  border-radius: 5px;
  overflow: hidden;
  position: absolute;
  top: 35vh; 
  left: 50%;
  transform: translateX(-50%);
  cursor: grab;
  box-shadow: 0 0 10px black;
  opacity: 0.9;
}

#terminal-header {
  height: 30px;
  background: #111;
  display: flex;
  align-items: center;
  padding: 0 10px;
  user-select: none;
}

#terminal-content {
  padding: 10px;
  font-family: 'Iosevka Web', monospace;
  font-size: 1rem;
  color: #e0def4;
  line-height: 1.4;
}

.terminal-line {
  text-align: left; 
  margin-bottom: 4px; 
}

.cursor {
  display: inline-block;
  width: 0.6ch;       
  height: 1em;        
  background: #e0def4; 
  margin-left: 2px;
  vertical-align: baseline;
  animation: blink 1s steps(1) infinite;
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  50.01%, 100% { opacity: 0; }
}


.footer {
  text-align: center;
  padding: 2rem 1rem;
  background: #1a1b26;
  color: #7aa2f7;
  font-size: 0.9rem;
  border-top: 1px solid #26233a;
}

.footer .social-links a {
  color: #7aa2f7;
  margin: 0 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

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