/* style.css */
body {
  background-color: #000;
  color: #0F0;
  font-family: "Lucida Console", Monaco, monospace;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

.container {
  text-align: center;
  position: relative;
}

.title {
  font-size: 2rem;
  margin-bottom: 1.7rem;
  overflow: hidden;
  white-space: nowrap;
  border-right: 2px solid #0F0;
  animation: typewriter 2s steps(40);
}

@keyframes typewriter {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

.link {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.link a {
  color: #0F0;
  text-decoration: none;
  filter: drop-shadow(0px 0px 4px #0F0);
}

.link a:hover {
  text-decoration: underline;
}

/* Portrait Styling */

.portrait-container {
  position: fixed;
  top: -180px;
  left: 0;
  right: 0;
  margin: auto;
  text-align: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.8);
  animation: fade-in-portrait 1s forwards;
}

@keyframes fade-in-portrait {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.portrait {
  border-radius: 50%;
  width: 150px;
  height: 150px;
  object-fit: cover;
  animation: fade-in 1s forwards;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
