@font-face {
  font-family: 'Unageo';
  src: url('./fonts/Unageo-Extrabold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

body {
  margin: 0;
  padding: 0;
  background: url('BG.png') no-repeat center center fixed;
  background-size: cover;
  font-family: 'Unageo', sans-serif;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
}

.content {
  text-align: center;
  animation: fadeIn 1.4s ease-out forwards;
}

h1 {
  font-size: 6rem;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.4rem;
}

.slash {
  color: white;
  transform: rotate(-10deg);
  display: inline-block;
  margin-right: -0.1em;
}

.bold {
  background: linear-gradient(60deg, #FFFF 0%, #FFFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.coming {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 600;
  margin-top: 1rem;
}

#typed {
  white-space: pre;
}

.cursor {
  display: inline-block;
  width: 5px;
  height: 0.8em;
  background-color: white;
  margin-left: 2px;
  vertical-align: -0.15em;
  animation: blink 1s step-start infinite;
}

@keyframes blink {
  50% { opacity: 0; }
}

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


