
* {
    padding: 0;
    margin: 3;
    box-sizing: border-box;
    font-family: 'B612 Mono', monospace;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    background-image: url(2E889116-1788-4CCE-9AE6-F37BF62BC407_1_105_c.jpeg); /* Replace 'background-image.jpg' with your image file path */
    background-size: cover; /* Adjust the background size as needed */
    background-repeat: no-repeat;
    background-attachment: fixed; 
    background-color: transparent;
  }
  * {
    cursor: none;
  }
  a {
    color: #8B97FF;
    text-decoration: none;
  }
  body {
    overflow-x: hidden;
    font-family: 'B612 Mono', monospace;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;  
  }

  section {
    display: inline-block;
    min-height: 10vh;
    width: 100%;
    align-items: left;
    justify-content: left;
    font-family: 'B612 Mono', monospace;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: normal;  
  }

  .container {
    display: inline-block;
    width: 1000px;
    height: 50px;
    font-family: 'B612 Mono', monospace;
    font-size: 24px;
    font-style: italic;
    font-weight: 700;
    line-height: normal; 
 
  }
  
  #one {
    position: fixed;
    top: 210px;
    left: 320px;
    width: 231px;
    height: 93px;
    color: #FFC0C0;
  }

  #two
  {
    position: relative;
    top: 300px;
    left: 50px;
    color:#FFC0C0;
  }

  #three
  {
    position: relative;
    top: 350px;
    left: 90px;
    color: #FFC0C0;
    font-size: 20px; 
  }

  #four
  {
    position: relative;
    top: 355px;
    left: 100px;
    color: #FFC0C0;
    font-size: 20px; 
  }

  body #five
  {
    position: relative;
    top: -40px;
    left: 650px;
    color: #FFC0C0;
    font-size: 15px; 
    font-style: bold;
  }

  body #six
  {
    position: relative;
    top: 20px;
    left: 1000px;
    color: #FFC0C0;
    font-size: 15px; 
    font-style: bold;
  }

  #seven
  {
    position: relative;
    top: 180px;
    left: 800px;
    color: #FFC0C0;
    font-size: 20px; 
    font-style: bold;
  }

  #eight
  {
    position: relative;
    top: 190px;
    left: 800px;
    color: #FFC0C0;
    font-size: 20px; 
    font-style: bold;
  }

  #nine
  {
    position: relative;
    top: 190px;
    left: 900px;
    color: #FFC0C0;
    font-size: 20px; 
    font-style: bold;
  }

  #ten
  {
    position: relative;
    top: 230px;
    left: 650px;
    color: #FFC0C0;
    font-size: 20px; 
    font-style: bold;
  }
  
  /* Define the keyframes for the animation */
@keyframes text-loop {
  0% {
    opacity: 1; /* Start with full opacity */
  }
  50% {
    opacity: 0; /* Vanish at halfway point */
  }
  100% {
    opacity: 1; /* Reappear at the end */
  }
}

/* Apply the animation to the text container */
.text-container {
  animation: text-loop 2s infinite; /* Use the keyframe animation, repeat it infinitely */
  font-size: 10px;
}



.bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: all 0.3s ease-out;
}

.bg-show .bg {
  z-index: 1;
  opacity: 1;
}

.bg-show a:hover {
  z-index: 2;
  border-bottom-color: transparent;
  color: var(--red);
}

.bg-show .container a:hover::before {
  transform: translate(-50%, -50%) scaleX(1);
  transition: transform 0.2s 0.1s ease-out;
}


.cursor {
    z-index: 100;
    position: absolute;
    top: 0;
    left: 0;
    height: 30px;
    width: 30px;
    border-radius: 50px;
    transform: translate(-50%, -50%);
    pointer-events: none;
  }
.cursor::after,
.cursor::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgb(137, 169, 238);
    height: 10px;
    width: 10px;
    border-radius: 50px;
  }
.cursor::before {
    background-color: rgb(137, 169, 238);
  }
.cursor.click::before {
    animation: click 1s ease forwards;
    background-color: rgb(137, 169, 238);
  }
@keyframes click {
    0% {
      opacity: 1;
      transform: translate(-50%, -50%) scale(1);
    }
    100% {
      opacity: 0;
      transform: translate(-50%, -50%) scale(7);
    }
  }
  