@font-face {
  font-family: 'Marvin Visions Variable';
  src: url("https://s3-us-west-2.amazonaws.com/s.cdpn.io/756881/MarvinVisionsTrial-Variable.ttf");
}

body {
  background-color: #fff;
  color: #1b1b1d;
}

#quote-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  position: relative;
}

#quote-section:after {
    content: '';
    background-image: url(https://s3-us-west-2.amazonaws.com/s.cdpn.io/756881/texture.svg);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 999;
    pointer-events: none;
    opacity: 0.2;
    filter: invert(1);
    background-size: cover;
}
#quote {
  --weight: 10;
  font-family: 'Marvin Visions Variable';
  font-size: 5rem;
  font-weight: 170;
  line-height: 1;
  text-align: center;
}

#quote > * {
  color: hsl(347, 7%, 29%);
  font-variation-settings: 'wght' var(--weight);
}

#circles-animation-container {
  position: relative;
}

body:before, body:after {
  content: "";
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: linear-gradient(to bottom, #fff 10%, rgba(255, 255, 255, 0));
}
body:after {
  top: auto;
  bottom: 0;
  background: linear-gradient(to top, #fff 50%, rgba(255, 255, 255, 0));
}

.scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: Roboto, sans-serif;
  letter-spacing: 0.2em;
  font-size: 11px;
  margin-top: 3rem;
}
.scroll span {
  display: block;
}
.scroll svg {
  margin-top: 10px;
  width: 18px;
  height: 18px;
  animation: scroll 0.95s ease-in-out alternate infinite;
  fill: none;
  stroke: #1b1b1d;
  stroke-linecap: round;
  stroke-miterlimit: 10;
  stroke-width: 1;
}

.circle {
  width: 20px;
  height: 20px;
  border-radius: 40%;
  opacity: 0;
  margin: -19px auto;
  transition: transform 1s cubic-bezier(0.14, 0.15, 0.13, 0.99);
}

@-webkit-keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(10px);
  }
}

#final-quote-section {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 1rem;
  padding-top: 4rem;
  padding-bottom: 20rem;
  position: relative;
}

#final-quote {
  --weight: 10;
  font-family: 'Marvin Visions Variable';
  font-size: 5rem;
  font-weight: 170;
  line-height: 1;
  text-align: center;
}

#final-quote > * {
  color: hsl(347, 7%, 29%);
  font-variation-settings: 'wght' var(--weight);
}

.button {
    position: relative;
    display: inline-block;
    padding: 1rem 2rem;
    color: var(--button-stroke);
    text-decoration: none;
    overflow: hidden;
    background: transparent;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2rem;
    margin-top: 8rem;
    border: 2px solid var(--button-stroke);
    border-radius: 50px;
}

.button__label {
    position: relative;
    z-index: 2;
    transition: color 0.4s ease-in-out;
}

.button__flair {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--button-stroke);
    z-index: 1;
    transform: translateX(-101%);
}

.button:hover .button__label {
    color: var(--button-hoverColor);
}

.button:hover .button__flair {
    transform: translateX(0);
    transition: transform 0.4s ease-in-out;
}

#peony-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 999;
}

.peony {
  position: absolute;
  top: -50px;
  animation: fall linear infinite;
}

@keyframes fall {
  to {
    transform: translateY(100vh) rotate(360deg);
  }
}








