@import url("https://fonts.googleapis.com/css2?family=Mulish:wght@700&display=swap");
:root {
  --white: #FFFFFF;
  --blue:#302F63;
  --red: #EA504C;
  --cyan:#68C3CD;
  --yellow: #FFC952;
}

body {
  margin: 0;
  font-family: "Mulish", sans-serif;
}

.cta {
  height: 50px;
}

nav {
  position: fixed;
  width: 100%;
  display: flex;
  box-sizing: border-box;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding-right: 20px;
}
nav section img {
  margin-right: 20px;
}
nav img {
  height: 80px;
}

@-webkit-keyframes upDown {
  to {
    transform: translate3d(0, 5%, 0);
  }
}

@keyframes upDown {
  to {
    transform: translate3d(0, 5%, 0);
  }
}
@-webkit-keyframes float {
  to {
    transform: translate3d(-20%, 30%, 0) rotate3d(0, 0, 1, 5deg);
  }
}
@keyframes float {
  to {
    transform: translate3d(-20%, 30%, 0) rotate3d(0, 0, 1, 5deg);
  }
}
#illustration {
  box-sizing: border-box;
  padding: 30px;
  width: 45vw;
  height: 80vh;
  display: grid;
  margin-left: 8%;
  grid-template-columns: 1fr 1.5fr 1fr;
  align-items: center;
  transform: translate3d(0, 0, 0);
}
#illustration img {
  width: 100%;
  -webkit-animation-name: upDown;
          animation-name: upDown;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
#illustration img:first-of-type {
  -webkit-animation-delay: -3s;
          animation-delay: -3s;
  margin-top: 100%;
}
#illustration img:last-of-type {
  -webkit-animation-delay: -6s;
          animation-delay: -6s;
  margin-bottom: 80%;
}

a.cta {
  cursor: pointer;
  position: relative;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border-radius: 10em;
  padding: 20px 30px;
  text-transform: uppercase;
  font-weight: bold;
  color: var(--white);
  font-size: 0.9em;
}
a.cta.second {
  background: var(--cyan);
}

#textarea {
  width: 40%;
  color: var(--blue);
  position: absolute;
  right: 10%;
  top: 50%;
}
#textarea > div {
  position: relative;
  display: flex;
  align-items: center;
}
#textarea #bird {
  pointer-events: none;
  display: none;
  width: 150px;
  height: 150px;
  z-index: 0;
  transform: translate3d(-20%, 10%, 0) rotate3d(0, 0, 1, -10deg);
  transform-origin: bottom center;
  -webkit-animation-name: float;
          animation-name: float;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}/*# sourceMappingURL=sheet.css.map */