* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden;   /* ✅ Prevents scrollbars */
}



.prevent-select {
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.center {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  z-index: 10;   /* ✅ Places text above the animation */
  width: 100%;
}

.logo {
  font-family: "Inknut Antiqua", serif;
  font-size: 2.5rem;
  letter-spacing: 0.1px;
  color: #ffffff;
  animation: glow 1.5s ease-in-out;
  display: block;
  line-height: 1;
  margin-bottom: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes glow {
  0%,
  100% {
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 20px rgba(255, 255, 255, 0.1);
  }
  50% {
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5),
      0 0 40px rgba(255, 255, 255, 0.3);
  }
}

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background: #323232;
}