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

body, html {
  height: 100%;
  font-family: 'Courier New', monospace;
  scroll-behavior: smooth;
  background-color: black;
}

.hero {
  position: relative;
  height: 100vh;
  background: url('pic.gif') no-repeat center center;
  background-size: cover;
  background-attachment: fixed;
  overflow: hidden;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 2;
}

.hero-text {
  color: rgba(255, 255, 255, 0.859);
  font-size: clamp(1.5rem, 6vw, 3.5rem);
  opacity: 1;
  transition: transform 0.1s ease-out, opacity 0.1s ease-out;
  will-change: transform, opacity;
  white-space: nowrap;
}

.blinking-cursor {
  display: inline-block;
  animation: blink 1s step-end infinite;
}

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

.hero-links {
  color: white;
  font-size: clamp(0.8rem, 2.5vw, 1.2rem);
  margin-top: 1rem;
}

.hero-links a {
  color: #eab4ff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hero-links a:hover {
  color: #ffffff;
}

.content {
  padding: 100vh 2rem 4rem;
  background-color: white;
  color: #333;
}
