html,
body {
  height: 100%;
  margin: 0;
  background-color: #121212;
  color: #b0b0b0;
  font-family: monospace;
  cursor: url("../img/cur.png"), auto;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-shadow: #000 0 0 50px;
  font-size: clamp(14px, 1.5vw, 18px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

h1 {
  font-family: monospace;
  font-size: clamp(32px, 5vw, 50px);
  color: #a9a9a9;
}

footer {
  height: 40px;
  position: fixed;
  width: 100%;
  bottom: 0;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  z-index: 1;
}

#flexboxcontainer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  z-index: 2;
}

#hiddencontainer {
  display: none;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  padding-bottom: 40px;
}

#hiddencontainer.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

.accent {
  color: #333333;
  text-shadow: #333333 0 0 50px;
}

.clicktocontinuecontainer {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
  cursor: pointer;
  opacity: 0;
  animation: fadeIn 1s forwards;
  z-index: 3;
  position: absolute;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.clicktocontinuecontainer:hover {
  opacity: 0.6;
}

.center {
  margin: 0;
  text-align: center;
}

.terminal {
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  font-family: monospace;
  padding: 20px;
  color: white;
}

#gif {
  position: relative;
  z-index: 1;
  width: 50%;
  height: auto;
  object-fit: contain;
}

.typing::after {
  content: "|";
  animation: blink 1s infinite;
}

.lazy-image {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

.lazy-image.loaded {
  opacity: 1;
}

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

  50% {
    opacity: 0;
  }
}

@keyframes flicker {
  0% {
    opacity: 1;
  }

  20% {
    opacity: 0.3;
  }

  50% {
    opacity: 1;
  }

  70% {
    opacity: 0.5;
  }

  100% {
    opacity: 1;
  }
}
