body {
    background-color: #f4ffcd;
}
header#hero {
    height: 100vh;
    padding: 32px 80px;
    background:  #f4ffcd  url("/img/hero.png") no-repeat -300px;
    background-size: cover;
    animation: backgroundScroll 100s ease-in-out infinite;
    transform: translateZ(0px);
    display: flex;
    justify-content: space-between;
  }

@keyframes backgroundScroll {
    0%   {background-position: 0 0;}
    50%  {background-position: -400px 0;}
    100% {background-position: 0 0;}
}

#hero h1 {
    font-family: 'Bebas Neue', cursive;
    font-size: 140px;
    letter-spacing: 0.0em;
    line-height: .8em;
    color:  #149e8c;

    margin: 80px 0;

    text-transform: uppercase;
    mix-blend-mode: exclusion;

}
.flex-container { 
    display: flex;
    align-items: center;
    margin: 32px 0;
}

.button{
    margin-right: 24px;
    color:  #fff;
    text-transform: uppercase;
    padding: 10px 24px;
    letter-spacing: .05em;
    font-weight: 700;
    
    background-color: #e06177;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;

}

.ph-badge {
}

#hero p {
    color: var(--secondary-text);
    font-size: 32px;
    width: 640px;
}

#hero-text{
    max-width: 640px;
}

#hero aside {
    width: 480px;
}