html, body {
    background: #636879;
    font-family: "Red Hat Display", sans-serif;
    font-optical-sizing: auto;
    margin: 0;
    padding: 0 1vw;
    color: #1e1e1f;
}



.content {
    box-sizing: border-box;
    margin: 5vh auto;
    padding: 8vw;
    max-width: 740px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 90vh;
    background-color: #f6f5f3;
    border-radius: 10px;
    position: relative;
}

.content::after {
    position: absolute;
    content: "";
    top: 15px;
    left: 0;
    right: 0;
    z-index: -1;
    height: 103%;
    width: 103%;
    max-width: 750px;
    transform: scale(0.9) translateZ(0);
    filter: blur(15px);
    background: linear-gradient(
        to left,
        #2e506e,
        #ef8258,
        #feb933,
        #acccc2,
        #feb933,
        #ef8258,
        #2e506e
    );
    background-size: 200% 200%;
    animation: animateGlow 3.25s linear infinite;
  }

h1 {
    text-transform: lowercase;
    font-weight: 700;
    font-style: normal;
    font-size: 7vw;
    margin: 0;
}

p {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.6;
    text-wrap: balance;
}

@keyframes animateGlow {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 200% 50%;
  }
}

footer {
    font-size: 0.8rem;
}