@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");

body {
  font-family: "Lato", sans-serif;
  background-color: #f8f9fa;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  min-height: 100vh;
  text-align: center;
  overflow: hidden;
  position: relative;
  padding: 40px;
}

.header {
  width: 100%;
  padding: 20px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  box-sizing: border-box;
}

.logo {
  width: 200px;
}

.main-content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: -40px;
}

.coming-soon {
  font-size: max(50px, 8vw);
  font-weight: 700;
  color: #212529;
  display: flex;
  align-items: center;
}

.o-container {
  position: relative;
  display: inline-block;
}

.eye {
  position: absolute;
  width: max(30px, 4vw);
  height: max(30px, 4vw);
  background-color: #fff;
  border: max(3px, 0.5vw) solid #212529;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.pupil {
  position: absolute;
  width: max(15px, 2vw);
  height: max(15px, 2vw);
  background-color: #212529;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.white-dot {
  position: absolute;
  width: max(5px, 0.5vw);
  height: max(5px, 0.5vw);
  background-color: #fff;
  border-radius: 50%;
  bottom: 25%;
  right: 25%;
  transform: translate(50%, 50%);
}

.subheading {
  font-size: max(16px, 1.5vw);
  color: #6c757d;
  margin-top: 20px;
  padding: 0 20px;
  box-sizing: border-box;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  height: calc(2 * 1.2em);
  line-height: 1.2em;
  max-width: 80%;
}

.banner {
  width: 120%;
  background-color: #ef3920;
  color: white;
  padding: 10px 0;
  overflow: hidden;
  white-space: nowrap;
  transform: rotate(-4deg);
  position: absolute;
  bottom: 15%;
  left: -10%;
}

.banner-text {
  display: inline-block;
  padding-right: 50px;
  animation: marquee 300s linear infinite;
}

@keyframes marquee {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}

.lime-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(to bottom right, #f5ff25, #caf945);
  z-index: -1;
  animation-name: float;
  animation-duration: 10s;
  animation-iteration-count: infinite;
  animation-timing-function: ease-in-out;
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(15deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

.circle-1 {
  width: 60px;
  height: 60px;
  top: 70%;
  left: 15%;
  animation-delay: 0s;
}

.circle-2 {
  width: 20px;
  height: 20px;
  top: 20%;
  left: 30%;
  animation-delay: 1s;
}

.circle-3 {
  width: 15px;
  height: 15px;
  top: 45%;
  left: 48%;
  animation-delay: 2s;
}

.circle-4 {
  width: 25px;
  height: 25px;
  top: 60%;
  left: 45%;
  animation-delay: 3s;
}

.circle-5 {
  width: 10px;
  height: 10px;
  top: 80%;
  left: 55%;
  animation-delay: 4s;
}

.circle-6 {
  width: 20px;
  height: 20px;
  top: 25%;
  left: 85%;
  animation-delay: 5s;
}

@media (max-width: 768px) {
  body {
    padding: 20px;
  }

  .logo {
    width: 150px;
  }

  .main-content {
    margin-top: -20px;
  }

  .coming-soon {
    font-size: max(40px, 10vw);
  }

  .subheading {
    font-size: max(14px, 2vw);
  }

  .banner {
    bottom: 10%;
  }

  .circle-1 {
    top: 60%;
    left: 10%;
  }

  .circle-2 {
    top: 15%;
    left: 20%;
  }

  .circle-3 {
    top: 40%;
    left: 40%;
  }

  .circle-4 {
    top: 55%;
    left: 35%;
  }

  .circle-5 {
    top: 75%;
    left: 50%;
  }

  .circle-6 {
    top: 20%;
    left: 80%;
  }
}

@media (max-width: 480px) {
  .logo {
    width: 100px;
  }

  .main-content {
    margin-top: 0;
  }

  .coming-soon {
    font-size: max(30px, 12vw);
  }

  .subheading {
    font-size: max(12px, 3vw);
  }

  .banner {
    bottom: 5%;
  }

  .circle-1 {
    top: 50%;
    left: 5%;
  }

  .circle-2 {
    top: 10%;
    left: 15%;
  }

  .circle-3 {
    top: 35%;
    left: 30%;
  }

  .circle-4 {
    top: 50%;
    left: 25%;
  }

  .circle-5 {
    top: 70%;
    left: 45%;
  }

  .circle-6 {
    top: 15%;
    left: 75%;
  }
}

@media (max-width: 375px) {
  .coming-soon {
    font-size: max(28px, 10vw);
  }

  .subheading {
    font-size: max(11px, 2.5vw);
  }

  .circle-1 {
    top: 45%;
    left: 3%;
  }

  .circle-2 {
    top: 8%;
    left: 12%;
  }

  .circle-3 {
    top: 30%;
    left: 25%;
  }

  .circle-4 {
    top: 45%;
    left: 20%;
  }

  .circle-5 {
    top: 65%;
    left: 40%;
  }

  .circle-6 {
    top: 12%;
    left: 70%;
  }
}
