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

::-webkit-scrollbar {
  width: 7.5px;
  opacity: 0.1;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  opacity: 0.7;
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: linear-gradient(to top, #f32170, #ff6b08, #cf23cf, #2A3CD3);
  border-radius: 10px;
}

@keyframes glowing {
  0% {
    background-color: #AA0000;
    box-shadow: 0 0 3px #AA0000;
  }
  50% {
    background-color: #CC0000;
    box-shadow: 0 0 10px #CC0000;
  }
  100% {
    background-color: #AA0000;
    box-shadow: 0 0 3px #AA0000;
  }
}
@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes cloud {
  0% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(10px);
  }
}
main {
  height: 100vh;
  width: 100vw;
  background-color: #11f0ff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cpolygon fill='%23cc0000' points='957 450 539 900 1396 900'/%3E%3Cpolygon fill='%23aa0000' points='957 450 872.9 900 1396 900'/%3E%3Cpolygon fill='%23d6002b' points='-60 900 398 662 816 900'/%3E%3Cpolygon fill='%23b10022' points='337 900 398 662 816 900'/%3E%3Cpolygon fill='%23d9004b' points='1203 546 1552 900 876 900'/%3E%3Cpolygon fill='%23b2003d' points='1203 546 1552 900 1162 900'/%3E%3Cpolygon fill='%23d3006c' points='641 695 886 900 367 900'/%3E%3Cpolygon fill='%23ac0057' points='587 900 641 695 886 900'/%3E%3Cpolygon fill='%23c4008c' points='1710 900 1401 632 1096 900'/%3E%3Cpolygon fill='%239e0071' points='1710 900 1401 632 1365 900'/%3E%3Cpolygon fill='%23aa00aa' points='1210 900 971 687 725 900'/%3E%3Cpolygon fill='%23880088' points='943 900 1210 900 971 687'/%3E%3C/svg%3E");
  background-size: 100% 120%;
  display: grid;
  place-items: center;
  overflow-y: scroll;
  overflow-x: hidden;
  position: fixed;
}
main .head {
  font-family: "Oswald", sans-serif;
  background: linear-gradient(45deg, #f32170, #ff6b08, #cf23cf, #2A3CD3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  font-size: 3rem;
  z-index: 10;
  margin: 35px 0 15px 0;
  text-align: center;
  line-height: 4rem;
}
main .container {
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  height: 100%;
  padding: 25px;
}
main .container .box {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  animation: float 2s ease-in-out infinite;
  margin: 40px;
}
main .container .box .balloon {
  height: 200px;
  width: 200px;
  border-radius: 100%;
  border-bottom-left-radius: 225%;
  border-bottom-right-radius: 225%;
  border-top-left-radius: 225%;
  border-top-radius: 120%;
  transform: rotate(133deg);
  display: grid;
  place-items: center;
  z-index: 2;
  background-color: #ffbf00;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='61' height='61' viewBox='0 0 90 90'%3E%3Ccircle fill='%2306B' cx='45' cy='45' r='10'/%3E%3Cg fill='%23800' fill-opacity='1'%3E%3Ccircle cx='0' cy='90' r='10'/%3E%3Ccircle cx='90' cy='90' r='10'/%3E%3Ccircle cx='90' cy='0' r='10'/%3E%3Ccircle cx='0' cy='0' r='10'/%3E%3C/g%3E%3C/svg%3E");
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.25), 0 6px 20px 0 rgba(0, 0, 0, 0.14);
}
main .container .box .balloon .img {
  height: 125px;
  width: 125px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  transform: rotate(-133deg);
  overflow: hidden;
  box-shadow: 0px 0px 7px 2px rgba(232, 255, 248, 0.9);
}
main .container .box .balloon .img img {
  height: 100%;
  border-radius: 50%;
  width: 100%;
}
main .container .box .rope {
  width: 80px;
  height: 100px;
  border: 5px solid #3e2402;
  margin-top: -40px;
  position: relative;
}
main .container .box .rope::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: 5px;
  background-color: #3e2402;
}
main .container .box .desc {
  height: 120px;
  width: 150px;
  background-color: #3e2402;
  border-radius: 5px;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  margin-top: -5px;
  display: grid;
  place-items: center;
}
main .container .box .desc button {
  border-radius: 20px;
  border: none;
  color: #eeeeee;
  cursor: pointer;
  display: inline-block;
  font-family: sans-serif;
  font-size: 20px;
  padding: 10px 25px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  animation: glowing 1300ms infinite;
}
main .cloud {
  width: 250px;
  height: 60px;
  border-radius: 50px;
  background: #fff;
  opacity: 0.5;
  animation: cloud 2s alternate-reverse infinite;
}
main .cloud::before {
  position: absolute;
  content: "";
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  bottom: 30px;
  left: 30px;
}
main .cloud::after {
  position: absolute;
  content: "";
  width: 140px;
  height: 120px;
  border-radius: 50%;
  background: #fff;
  bottom: 20px;
  left: 90px;
}
main .cloud1 {
  position: fixed;
  top: 20%;
  left: 0;
  opacity: 0.6;
  animation-delay: 0.2s;
}
main .cloud2 {
  position: fixed;
  top: 15%;
  right: 10%;
  transform: rotate(2deg);
  opacity: 0.6;
  animation-delay: 0.5s;
}
main .cloud3 {
  position: fixed;
  top: 50%;
  left: 40%;
}
main .cloud4 {
  position: fixed;
  top: 80%;
  left: 0;
  transform: rotate(2deg);
  opacity: 0.6;
  animation-delay: 0.7s;
}
main .cloud5 {
  position: fixed;
  top: 60%;
  right: 5%;
  transform: rotate(12deg);
  opacity: 0.6;
  animation-delay: 0.1s;
}

@media (max-width: 600px) {
  main {
    background-size: 110% 150%;
  }
  main .head {
    font-size: 2.5rem;
  }
  main .container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: row;
  }
  main .cloud1 {
    top: 30%;
  }
  main .cloud2 {
    top: 15%;
    right: 5%;
  }
  main .cloud3 {
    opacity: 0;
  }
}/*# sourceMappingURL=style.css.map */