@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@500&display=swap");
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@600&display=swap');

/*** Flow: Toshiya Marukubo ***/

* {
  margin: 0;
  padding: 0;
}

html,
body {
  font-family: "Rajdhani", sans-serif;
  overflow: auto;
  opacity: 1;
}

body {
  position: absolute;
  background: #080808;
  opacity: 1;
}

main {
  z-index: 2;
  color: #fff;
  position: fixed;
  top: 50%;
  left: 1.6rem;
  transform: translateY(-50%);
  animation: trippy 10s infinite alternate ease-in-out;
  opacity: 1;
}

h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.4rem;
  animation: trippy 50s infinite alternate ease-in-out;
  text-shadow: 0 0 5px #fff, 0 0 10px rgb(26, 32, 209), 0 0 20px rgb(236, 100, 4);
  opacity: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
}

h1 > span {
  font-size: 1.6rem;
  opacity: 1;
  transform: translateY(20px);
  animation: fadeInUp 1s forwards;
}

.h1 span:nth-child(1) { animation-delay: 0s; }
.h1 span:nth-child(2) { animation-delay: 0.1s; }
.h1 span:nth-child(3) { animation-delay: 0.2s; }
.h1 span:nth-child(4) { animation-delay: 0.3s; }
.h1 span:nth-child(5) { animation-delay: 0.4s; }
.h1 span:nth-child(6) { animation-delay: 0.5s; }
.h1 span:nth-child(7) { animation-delay: 0.6s; }
.h1 span:nth-child(8) { animation-delay: 0.7s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
    text-shadow: 0 0 10px #0ff, 0 0 20px #0ff, 0 0 40px #0ff;
  }
}

p.checkbox {
  color: #fff;
  font-size: 1.6rem;
  font-family: 'Orbitron', sans-serif;
  top: 10px; /* Adjust the top position */
  left: 10px; /* Adjust the left position */
}

input[type="checkbox"] {
  height: 1rem;
  width: 1rem;
}

p {
  padding: 0.8rem 0 0 0;
}


.image-container {
  position: relative;
  width: 100%;
  height: 100px; /* Adjust this to the height you want */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
}

.image-container img {
  width: 100px; /* Starting width of the images */
  transition: transform 0.3s ease-in-out, width 0.3s ease-in-out;
  animation: rotate 10s linear infinite;
  bottom: 50px;
}


@keyframes trippy {
  0% {
    transform: scale(1);
    filter: hue-rotate(0deg) saturate(1);
  }
  50% {
    transform: scale(1);
    filter: hue-rotate(180deg) saturate(20);
  }
  100% {
    transform: scale(1);
    filter: hue-rotate(360deg) saturate(1);
  }
}