body {
    min-height: 100vh;
    font-family: 'Work Sans', sans-serif;
    overflow-y: auto;
    /* Figma-like soft green (top left) and blue (bottom right) with white center */
    background: 
        radial-gradient(ellipse 50% 100% at 0% 0%, #d6f5d6 0%, transparent 100%), /* soft green top left */
        radial-gradient(ellipse 60% 70% at 100% 100%, #d6eaff 0%, transparent 100%), /* soft blue bottom right */
        #fff
}
/* .rocket-img {
    width: 220px;
    max-width: 80vw;
} */
@media (max-width: 576px) {
    .headline {
        font-size: 2rem;
    }
    /* .rocket-img {
        width: 150px;
    } */

    body {
        /* background: linear-gradient(135deg, #f6fbf7 0%, #eaf6ef 100%); */
        background: radial-gradient(circle at 50% 0%, #f6fbf7 0%, #eaf6ef 100%);
    }
    

    .email-form {
        text-align: center;
        font-family: 'Work Sans', sans-serif; 
        /* font-style: italic; */
        font-size: 1rem;
        opacity: 1;   
        padding: 10px 16px;        
    }

    .subscribe {
        font-family: 'Work Sans', sans-serif; 
        /* font-style: italic; */
        font-size: 1.2rem;
        opacity: 1;
        padding: 10px 16px;
    }
}
   