@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  background: #3f3e4a;
  margin: 0px;
  padding: 0px;
  font-family: "Poppins", sans-serif;
}

.banner {
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .banner {
    width: 90%;
  }
}
.banner h3 {
  padding: 10px;
  background: #f4e5a1;
  position: relative;
  animation: banner-swing 1s infinite ease-in-out alternate;
  box-shadow: 0px 10px 20px rgba(132, 132, 132, 0.593);
}
.banner::before, .banner::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 100%;
  background: #e8e8e8;
  top: -35px;
  z-index: -1;
  animation: banner-swing-before 1s infinite ease-in-out alternate;
}
.banner::before {
  left: 5px;
}
.banner::after {
  right: 5px;
}
@keyframes banner-swing {
  0% {
    left: 1%;
  }
  100% {
    left: -1%;
  }
}
@keyframes banner-swing-before {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}

.boxes {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  bottom: 15%;
  left: 3%;
  z-index: 1000;
}
@media screen and (max-width: 768px) {
  .boxes {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 608px) {
  .boxes {
    transform: scale(0.6);
    left: 1%;
  }
}
@media screen and (max-width: 400px) {
  .boxes {
    transform: scale(0.5);
    left: -40px;
  }
}

.box.box-below, .box.box-above {
  width: 200px;
  height: 150px;
  background-image: linear-gradient(to right, #ea3b60 40.5%, #ff506d 0%);
  position: relative;
}
.box.box-below .top, .box.box-above .top {
  width: 105%;
  height: 30px;
  background: #000;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  top: -10px;
  background-image: linear-gradient(to right, #ea3b60 40.5%, #ff506d 0%);
}
.box.box-below .shadow, .box.box-above .shadow {
  z-index: 1;
  width: 100%;
  height: 25px;
  background: rgba(23, 22, 22, 0.7176470588);
}
.box.box-below__body .hold, .box.box-above__body .hold {
  width: 25%;
  height: 8px;
  background: #5238d1;
  position: relative;
  left: 65%;
  top: 5px;
  border-radius: 30px;
}
.box.box-above {
  width: 150px;
  height: 100px;
  position: relative;
  right: 5px;
  background-image: linear-gradient(to right, #695eee 40.5%, #a29bfe 0%);
}
.box.box-above .top {
  height: 20px;
  background-image: linear-gradient(to right, #695eee 40.5%, #a29bfe 0%);
}
.box.box-above .shadow {
  height: 15px;
}

.person {
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  left: 50%;
  bottom: 10%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .person {
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%) scale(0.8);
  }
}
@media screen and (max-width: 600px) {
  .person {
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%) scale(0.6);
  }
}
@media screen and (max-width: 500px) {
  .person {
    left: 50%;
    bottom: 10%;
    transform: translateX(-50%) scale(0.4);
  }
}
.person .workspace {
  position: relative;
  top: 190px;
  z-index: 100;
}
.person .worker {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  top: -70px;
  left: 40%;
  transform: translateX(-50%);
}
.person__laptop {
  width: 220px;
  height: 120px;
  position: relative;
  left: 18%;
}
.person__laptop .cover {
  width: 80%;
  height: 100%;
  background: #f1effe;
  transform: skew(20deg);
  border-radius: 15px;
  position: relative;
  left: -10%;
  z-index: 1;
}
.person__laptop .cover::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.2862745098);
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.person__laptop .bottom {
  position: absolute;
  width: 100%;
  height: 15%;
  background: #c3bffe;
  bottom: 0px;
  border-radius: 20px;
  left: 20px;
}
.person__table {
  width: 750px;
  height: 20px;
  background: #e8d5b7;
  border-radius: 5px;
  position: relative;
}
.person__table::before, .person__table::after {
  content: "";
  position: absolute;
  width: 13px;
  height: 350px;
  top: 2px;
  background: #e8d5b7;
}
.person__table::before {
  left: 25px;
}
.person__table::after {
  right: 25px;
}
.person__table .coffee {
  position: absolute;
  width: 40px;
  height: 50px;
  background: #5238d1;
  bottom: 20px;
  right: 30%;
  z-index: 100;
}
.person__table .coffee::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background-image: linear-gradient(#5238d1 50%, #3f3e4a 0%);
  border-radius: 50%;
  top: 50%;
  right: -50%;
  transform: translateY(-50%) rotate(-90deg);
  border-bottom: 4px solid white;
}
.person__table .coffee .steam {
  position: absolute;
  top: -50%;
  width: 30px;
  height: 30px;
  z-index: -4;
  opacity: 0.8;
  display: flex;
  filter: blur(10px);
  -webkit-filter: blur(10px);
}
.person__table .coffee .steam::before {
  content: "";
  width: 30px;
  height: 40px;
  background-color: white;
  animation: fadeOutUp linear 5s;
  -webkit-animation-iteration-count: infinite;
  animation-fill-mode: forwards;
  clip-path: polygon(33% 40%, 52% 12%, 84% 29%, 62% 65%, 54% 89%, 73% 92%, 73% 74%, 53% 63%, 77% 57%, 95% 31%, 71% 3%, 34% 47%, 50% 37%, 69% 39%, 69% 29%, 76% 35%, 61% 6%, 64% 47%, 91% 9%, 51% 5%, 84% 61%, 91% 49%, 35% 19%, 40% 10%, 57% 41%, 57% 54%, 92% 19%);
  border-radius: 60% 50%;
}
.person__structure {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.person__structure__hair {
  background: #ebb447;
  width: 100px;
  height: 150px;
  z-index: -10;
  position: absolute;
  top: 10px;
  left: 120px;
  border-radius: 15px 30px 0px 5px;
}
.person__structure__head {
  position: absolute;
  z-index: 100;
}
.person__structure__head .face {
  position: absolute;
  top: 40px;
  left: 140px;
  width: 60px;
  height: 60px;
  background: #fdd6aa;
  border-bottom-left-radius: 20px 20%;
  border-bottom-right-radius: 50%;
  border-top-right-radius: 50%;
}
.person__structure__head .face::before {
  content: "";
  position: absolute;
  width: 40%;
  height: 15%;
  background: #fdd6aa;
  border-radius: 50%;
  top: -7%;
}
.person__structure__head .face::after {
  content: "";
  position: absolute;
  width: 70%;
  height: 15%;
  background: #ebb447;
  border-radius: 50%;
  top: -7%;
  left: 30%;
}
.person__structure__head .face .mouth {
  border-radius: 50%;
  position: absolute;
  background: #000;
  height: 0.5px;
  width: 10px;
  top: 70%;
  transform: translateY(-40%);
  left: 6px;
  z-index: 1000;
}
.person__structure__head .face .mouth.sing-mouth {
  animation: mouth_move 6s 3.5s ease-in-out 1 alternate-reverse;
}
@keyframes mouth_move {
  0% {
    height: 0.5px;
    width: 10px;
    border-radius: 0px;
  }
  25% {
    height: 10px;
    width: 10px;
    border-radius: 40%;
  }
  50% {
    height: 10px;
    width: 10px;
    border-radius: 50%;
  }
  78% {
    height: 10px;
    width: 10px;
    border-radius: 40%;
  }
  100% {
    height: 1px;
    width: 10px;
    border-radius: 0%;
  }
}
.person__structure__head .face .ear {
  position: absolute;
  width: 20px;
  height: 15px;
  background: #fdd6aa;
  box-shadow: inset -1px 0px 2px 0px rgba(144, 138, 138, 0.08), 2px 3px 2px 0px rgba(55, 50, 50, 0.08);
  border-radius: 50%;
  z-index: 100;
  bottom: 40%;
  right: -8px;
  transform: rotate(-20deg);
}
.person__structure__head .face .ear::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 60px;
  background: #ebb447;
  transform: rotate(20deg);
  border-bottom-left-radius: 10px 50px;
  top: -30px;
  left: 0px;
  z-index: 100;
}
.person__structure__head .neck {
  width: 26px;
  height: 35px;
  background: #fdd6aa;
  position: absolute;
  top: 85px;
  left: 160px;
  clip-path: polygon(21% 0, 80% 0, 100% 100%, 0 100%);
  border-bottom-left-radius: 10px 10%;
  border-bottom-right-radius: 10px 10%;
  box-shadow: inset -1px -3px 5px 0px rgba(174, 174, 174, 0.652);
  transform: rotate(-10deg);
}
.person__structure__body {
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.person__structure__body__torso {
  width: 120px;
  height: 200px;
  background: white;
  position: relative;
  border-radius: 15% 40% 20px 9px/50%;
  transform: skew(10deg);
  left: 146px;
  top: 110px;
  z-index: 6;
}
.person__structure__body__torso .left__hand .sleeve {
  width: 40px;
  height: 70px;
  background: #dadde0;
  border-radius: 50% 50% 10px 30%/50%;
  position: absolute;
  right: 30%;
  top: 1%;
  transform: rotate(40deg);
  z-index: 4;
}
.person__structure__body__torso .left__hand .hand {
  height: 90px;
  width: 25px;
  background: #fdd6aa;
  position: absolute;
  right: 70%;
  top: 20%;
  transform: rotate(40deg);
  border-bottom-right-radius: 10px 10px;
}
.person__structure__body__torso .left__hand .hand::before {
  content: "";
  position: absolute;
  width: 80px;
  height: 25px;
  background: #fdd6aa;
  top: 90%;
  right: -12%;
  transform: rotate(-30deg) skew(0deg);
  border-top-right-radius: 50% 50px;
  border-bottom-right-radius: 50% 50px;
  border-bottom-left-radius: 50% 50px;
  border-top-left-radius: 50% 50px;
}
.person__structure__body__torso .left__hand .hand::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 25px;
  background: #fdd6aa;
  border-radius: 10px 10px 0 0;
  top: 111%;
  right: 235%;
  transform: rotate(-120deg) skew(0);
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}
@keyframes left__hand-rotate {
  0% {
    transform: rotate(40deg);
  }
  50% {
    transform: rotate(50deg);
  }
  100% {
    transform: rotate(40deg);
  }
}
.person__structure__body__torso .right__hand {
  height: 70%;
  width: 23px;
  background: #eac5a2;
  z-index: -1;
  position: absolute;
  left: -10%;
  top: -5%;
  border-top-right-radius: 10px 40px;
  border-top-left-radius: 10px 40px;
  transform: rotateX(-20deg) skew(-10deg);
  border-bottom-right-radius: 20%;
  border-bottom-left-radius: 20%;
  animation: right__hand 3s ease-in-out infinite both;
}
.person__structure__body__torso .right__hand::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 25px;
  background: #eac5a2;
  border-radius: 10px 10px 0 0;
  left: 48%;
  transform: translateX(-50%) rotate(-5deg) skew(0);
  z-index: -1;
  top: -20px;
  clip-path: polygon(0 0, 100% 0, 80% 100%, 20% 100%);
}
@keyframes right__hand {
  0% {
    transform: rotateX(-20deg) skew(-10deg);
  }
  50% {
    transform: rotateX(-25deg) skew(-12deg);
  }
  100% {
    transform: rotateX(-20deg) skew(-10deg);
  }
}
.person__structure__legs {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.person__structure__legs .seat {
  position: absolute;
  width: 60%;
  height: 10%;
  background: #2b3a67;
  top: 41.5%;
  right: -40%;
}
.person__structure__legs::before {
  content: "";
  position: absolute;
  width: 60%;
  height: 10%;
  background: #5a5a5a;
  border-radius: 50% 50% 0 0;
  bottom: 0px;
  right: -40%;
  z-index: -1;
}
.person__structure__legs::after {
  content: "";
  position: absolute;
  width: 10%;
  height: 55%;
  background: #5a5a5a;
  bottom: 0px;
  right: -15%;
  z-index: -1;
}
.person__structure__legs__leg {
  width: -moz-fit-content;
  width: fit-content;
}
.person__structure__legs__leg .thigh {
  position: relative;
  left: 70px;
  width: -moz-fit-content;
  width: fit-content;
  top: 50px;
}
.person__structure__legs__leg .thigh .top {
  background: #898888;
  height: 55px;
  width: 150px;
  transform: rotate(-10deg);
  border-radius: 30px;
  position: relative;
  top: 45px;
  left: -8.9px;
}
.person__structure__legs__leg .thigh .bottom {
  width: 200px;
  height: 50px;
  background: #898888;
  border-bottom-right-radius: 80px;
  border-bottom-left-radius: 60px;
  clip-path: polygon(6% 18%, 100% 0%, 100% 100%, 0% 100%);
}
.person__structure__legs__leg .lower__leg {
  width: 50px;
  height: 200px;
  background: #898888;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 30px;
  position: relative;
  transform: rotate(8deg);
  left: 49px;
  top: 10px;
  border-top-left-radius: 20px;
  z-index: 5;
}
.person__structure__legs__leg .lower__leg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #898888;
  border-radius: 30%;
  top: 50%;
  transform: translateY(-50%) rotate(2deg);
  right: -12px;
}
.person__structure__legs__leg .foot {
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: end;
  width: 80px;
  height: 70px;
}
.person__structure__legs__leg .foot .shoe__top__part {
  width: 45%;
  height: 40%;
  background: #fdd6aa;
  position: relative;
}
.person__structure__legs__leg .foot .shoe__bottom__part {
  width: 100%;
  height: 60%;
  background: rgb(255, 255, 255);
  border-top-left-radius: 50%;
  border-bottom-left-radius: 5px;
  position: relative;
}
.person__structure__legs__leg.left {
  z-index: 1000;
}
.person__structure__legs__leg.right {
  position: absolute;
  top: 0;
  transform: perspective(10px) rotate(357deg);
}
.person__structure__legs__leg.right .swing {
  animation: swing-rotate 2s ease-in-out infinite;
}
@keyframes swing-rotate {
  0% {
    transform: rotate(0deg);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.person__structure__legs__leg.right .lower__leg {
  width: 50px;
  height: 200px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 30px;
  position: relative;
  transform: rotate(337deg);
  left: 97px;
  top: 9px;
  border-top-left-radius: 5px;
  z-index: 5;
}
.person__structure__legs__leg.right .foot {
  position: absolute;
  right: 4%;
  transform: rotate(337deg);
}

.button {
  text-align: center;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.button h3 {
  font-size: 1rem;
  text-shadow: 1px 6px 2px rgba(88, 88, 88, 0.74);
}

button {
  position: fixed;
  bottom: 10px;
  right: 10px;
  outline: none;
  border: none;
  padding: 1rem 2rem;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  background-image: linear-gradient(45deg, #fdd6aa, #fdd6aa, #ebb447);
  background-size: 300%;
  border-radius: 50px;
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  z-index: 1000;
  transition: all 0.4s ease-in-out;
}
button:hover {
  transform: scale(1.05);
  background-position: 100%;
  transform: translateY(-5px);
  box-shadow: 0px 10px 20px rgba(93, 93, 93, 0.2);
}

.move-out-laptop {
  transition: 0.5s;
  left: -150%;
  animation: fadeOpacity 2s ease-in-out infinite;
}
@keyframes fadeOpacity {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
.move-out-coffee {
  transition: 0.5s;
  right: 65% !important;
}

.move-in-laptop {
  transition: 0.5s;
  left: 5%;
}
.move-in-coffee {
  transition: 0.5s;
  right: 20%;
}

.notification {
  position: fixed;
  top: 10px;
  right: 10px;
  background: #b8a289;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  opacity: 0;
}
.notification.one {
  animation: fadeIn 4s 10s ease-in-out none;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.notification h3 {
  margin: 0;
  font-size: 1rem;
  color: #333;
  text-align: center;
  font-weight: bold;
  animation: fadeInUp 0.5s ease-in-out forwards;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.characters .character {
  z-index: -100;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: -100%;
}
@media screen and (max-width: 768px) {
  .characters .character {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 600px) {
  .characters .character {
    transform: scale(0.6);
  }
}
@media screen and (max-width: 500px) {
  .characters .character {
    transform: scale(0.4);
  }
}
.characters .character .head {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #8b5a3c;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}
.characters .character .head .eye {
  width: 4px;
  height: 4px;
  background: #333;
  border-radius: 50%;
  display: inline-block;
  margin: 0 6px;
}
.characters .character .head .smile {
  width: 16px;
  height: 8px;
  border: 2px solid #333;
  border-top: none;
  border-radius: 0 0 16px 16px;
  background: transparent;
}
.characters .character .body {
  margin-top: 2px;
  width: 120px;
  height: 160px;
  position: relative;
  border-radius: 10px 10px 0px 0px;
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}
.characters .character .body::before, .characters .character .body::after {
  content: "";
  position: absolute;
  background-image: linear-gradient(#4a90e2 40%, #8b5a3c 0%);
  width: 40px;
  height: 80%;
  border-radius: 20px;
  top: 5px;
}
.characters .character .body::before {
  left: -42px;
}
.characters .character .body::after {
  right: -42px;
  transform-origin: top right;
}
.characters .character .legs {
  position: relative;
  height: 160px;
  width: 120px;
  top: -3px;
  display: flex;
  justify-content: space-between;
}
.characters .character .legs .left,
.characters .character .legs .right {
  width: 45%;
  height: 100%;
  background: linear-gradient(#616161 50%, #8b5a3c 0%);
  border-radius: 0px 0px 15px 15px;
  transform-origin: top;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.456);
}
.characters .walk {
  animation: enterframe 10s ease-in-out 1 forwards;
}
@keyframes enterframe {
  from {
    left: -100%;
  }
  to {
    left: 20%;
  }
}
@media screen and (max-width: 768px) {
  @keyframes enterframe {
    from {
      left: -100%;
    }
    to {
      left: 30%;
    }
  }
}
@media screen and (max-width: 600px) {
  @keyframes enterframe {
    from {
      left: -100%;
    }
    to {
      left: 20%;
    }
  }
}
@media screen and (max-width: 500px) {
  .characters .walk {
    transform: scale(0.4);
  }
}
.characters .walk .head::before {
  content: "Hi there!";
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border-radius: 20px;
  height: 20px;
  background: rgba(199, 166, 146, 0.6823529412);
  top: -5px;
  left: -54%;
}
.characters .walk .body::after {
  animation: wave-arm 2s 1 6s alternate;
}
@keyframes wave-arm {
  0% {
    transform: rotate(0deg) translateY(0);
  }
  30% {
    transform: rotate(-25deg) translateY(-10px);
  }
  60% {
    transform: rotate(-45deg) translateY(-30px);
  }
  90% {
    transform: rotate(-25deg) translateY(-10px);
  }
  100% {
    transform: rotate(0deg) translateY(0);
  }
}
.characters .walk .left {
  animation: walk-leg 2s 5 alternate;
  z-index: -1;
}
@keyframes walk-leg {
  0% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(5deg);
  }
}
.characters .walk .left ~ .right {
  animation: walk-leg-right 2s 5 alternate;
  z-index: -3;
}
@keyframes walk-leg-right {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-5deg);
  }
}

.wrap {
  position: absolute;
  width: 100px;
  height: 40px;
  left: -32px;
  text-align: center;
  font-weight: 400;
  margin-bottom: 0;
  transform: scale(0.3);
}
.wrap .eye {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  background: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: inline-block;
  overflow: hidden;
}
.wrap .eye::before {
  content: "";
  position: absolute;
  margin: auto;
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 50%;
  background: rgb(20, 20, 20);
}
.wrap .eye.sad::after {
  content: "";
  position: absolute;
  width: calc(100% + 20px);
  height: 0;
  border-radius: 50%;
  background: #fdd6aa;
  left: -10px;
}
.wrap .eye.sad:after {
  top: -10px;
}
.wrap .eye:first-child {
  left: 0;
}
.wrap .eye:last-child {
  right: 0;
}
.wrap .eye.sad:before {
  animation: sadb 4s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.wrap .eye.sad:after {
  animation: grina 4s cubic-bezier(0.785, 0.135, 0.15, 0.86) infinite;
}
.wrap .eye.d1 {
  animation-delay: 0.1s;
}

@keyframes grina {
  0%, 10% {
    height: 0;
  }
  20%, 40% {
    height: 100%;
  }
  50%, 100% {
    height: 0;
  }
}
@keyframes sadb {
  0%, 10% {
    top: 0;
  }
  20%, 40% {
    top: 50%;
  }
  50%, 100% {
    top: 0;
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 0.6;
    transform: translate3d(0, -20%, 0);
  }
  20% {
    opacity: 0.3;
    transform: translate3d(0, -40%, 0);
  }
  40% {
    opacity: 0.4;
    transform: translate3d(0, -60%, 0);
  }
  60% {
    opacity: 0.3;
    transform: translate3d(0, -80%, 0);
  }
  80% {
    opacity: 0.4;
    transform: translate3d(0, -90%, 0);
  }
  90% {
    opacity: 0.2;
    transform: translate3d(0, -95%, 0);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}/*# sourceMappingURL=styles.css.map */