* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Orbitron', sans-serif;
  background-color: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.container {
  text-align: center;
  padding: 2rem;
  animation: fadeIn 1.5s ease-out;
}

h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  letter-spacing: 2px;
  animation: pulse 3s ease-in-out infinite;
}

#typing-text {
  font-size: 1.1rem;
  color: #ccc;
  line-height: 1.6;
  min-height: 2rem;
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid #ccc;
  animation: blink 0.75s step-end infinite;
}

@keyframes blink {
  50% {
    border-color: transparent;
  }
}

.email {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: #555;
  animation: fadeIn 2s ease-out;
}

.email a {
  color: #666;
  text-decoration: none;
}

.email a:hover {
  color: #999;
}

.social-icons {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  animation: fadeIn 2s ease-out;
}

.social-icons a {
  color: #fff;
  font-size: 1.5rem;
  text-decoration: none;
  transition: color 0.3s;
  position: relative;
}

.social-icons a:hover {
  color: #999;
}

.social-icons a::after {
  content: attr(title);
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  background: #222;
  color: #fff;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.7rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
  white-space: nowrap;
}

.social-icons a:hover::after {
  opacity: 1;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 2rem;
  }

  #typing-text {
    font-size: 1rem;
  }

  .email {
    font-size: 0.7rem;
  }

  .social-icons a {
    font-size: 1.2rem;
  }
}