:root {
    --clr-white: #FFFFFF;
    --clr-black: #000000;
    --clr-faded-black: #343434;
    --clr-grey: #F5F5F5;
    --clr-pink: #FF5959;
    --ff-primary: 'Work Sans', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--ff-primary);
    line-height: 1;
    height: 100vh;
    background: url(/home-images/mob/hero-2.png) no-repeat;
    background-size: cover;
    font-size: 1.3125rem;  
    
}

.container {
    margin-inline: auto;
    width: min(85%, 70.5rem);
    display: block;
    padding-top: 6.5%;
}
/* adjustment for ip5/SE */
@media (max-width: 321px) {
    .container {
        padding-top: 0;
    }
    
}

h1 {
    font-family: var(--ff-primary);
    color: var(--clr-black);
    font-size: 3rem;
    font-weight: bold;   
}

.big-intro {
    margin-top: 7rem;
}

.button-filled a {
    background: var(--clr-pink);
    padding: 1.5rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--clr-white);
    border-radius: 20px;   
}

.button-filled {
    margin-top: 3.5rem;
}

.button-outlined a {
    padding: 1.4rem 4.6rem;
    text-decoration: none;
    font-weight: 700;
    color: var(--clr-pink);
    border-radius: 20px;
    border: 3px solid #FF5959;
}

.button-outlined {
    margin-top: 5rem;   
}

.hero-desktop {
    display: none;
}

.desktop-button {
    display: none;
}
@media (min-width: 1310px) {
    body {
        background: url(/home-images/desktop/hero.png) no-repeat;
        background-position: right;
    }

    .hero-mob {
        display: none;
    }

    .hero-desktop {
        display: inline-flex;
       
    }

   

    .container-desktop {
        padding-left: 2.5rem;
        padding-right: 50rem;
        padding-top: 5rem;
    }

    h1 {
        font-size: 5rem;
    }

    p {
        font-size: 2rem;
    }


}

@media (min-width: 600px ) {
    .desktop-button {
        display: flex;
        flex-direction: row;
        margin-left: 15%;
        
    }

    .mob-button {
        display: none;
    }

    .button-outlined {
        transform: translateY(-1.3rem);
    }

    .button-filled {
        margin-right: 1rem;
    }

}

@media (min-width: 1310px) {
    .desktop-button {
        display: flex;
        flex-direction: row;
        margin-left: 2rem;
        gap: 1rem;
    }

    .mob-button {
        display: none;
    }

    .button-outlined {
        transform: translateY(-1.3rem);
    }
}

