* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@keyframes moving-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#main-div {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100vh;
  overflow: hidden;
}

h1 {
  letter-spacing: 4px;
  background: linear-gradient(90deg, #888888, #ffffff, #888888);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: Poppins, sans-serif;
  font-weight: 900;
}

#top-rgb {
  top: 0px;
  background: linear-gradient(90deg, #ff0000, #ff7300, #ffeb00, #00ff6e, #0099ff, #cc00ff);
  background-size: 300% 100%;
  animation: moving-gradient 6s linear infinite;
}

#bottom-rgb {
  bottom: 0px;
  background: linear-gradient(90deg, #ff0000, #ff7300, #ffeb00, #00ff6e, #0099ff, #cc00ff);
  background-size: 300% 100%;
  animation: moving-gradient 6s linear infinite;
  width: 100%;
  height: 8px;
  position: absolute;
}

.eye-container {
  display: flex;
  justify-content: center;
  gap: 10px;
  position: absolute;
  top: 30%;
  width: 100%;
  margin-top: 30px;
}

.eye {
  width: 30px;
  height: 45px;
  background: #F5F1E8;
  border-radius: 40%;
  position: relative;
  overflow: hidden;
  animation: blink 3s infinite ease-in-out;
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

body {
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

@keyframes blink {
  0%, 85% {
    height: 45px;
    border-radius: 40%;
    transform: translateY(0);
  }
  87%, 97% {
    height: 10px;
    border-radius: 40% 40% 30px 30px;
    transform: translateY(10px);
  }
  100% {
    height: 45px;
    border-radius: 40%;
    transform: translateY(0);
  }
}

