* {
  scroll-behavior: smooth;
  text-decoration: none;
  user-select: none;
  draggable: false;
}

body::-webkit-scrollbar {
  display: none;
}

body {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -ms-overflow-style: none;
  scrollbar-width: none;
  background-repeat: no-repeat;
  background-color: #000;
  background-size: cover;
  background-position: center;
  color: #fff;
  margin: 0;
  padding: 0;
}

h1 {
  text-align: center;
  color: transparent;
  margin-top: 15%;
  font-size: 120px;
  font-family: "Roboto", Arial, sans-serif;
  -webkit-text-stroke: 1px #fff;
}

.codetext {
  color: rgb(97, 103, 122);
  font-family: LaBellaAurore;
  font-size: 20px;
  margin-left: 40%;
  margin-top: 0;
  margin-bottom: 0;
}

@font-face {
  font-family: LaBellaAurore;
  src: url("fonts/La_Belle_Aurore.ttf");
}

.typing {
  white-space: nowrap;
  overflow: visible;
  border-right: 2px solid rgba(255, 255, 255, 0.75);
  animation: blink-caret 0.75s step-end infinite;
}

@keyframes blink-caret {
  50% {
    border-color: transparent;
  }
}

.title-glow {
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    text-shadow: 0 0 5px #fff, 0 0 10px #9e5ec8, 0 0 20px #9e5ec8;
  }
  50% {
    text-shadow: 0 0 10px #fff, 0 0 20px #c29aff, 0 0 30px #c29aff;
  }
}
