@import url('https://fonts.googleapis.com/css2?family=Bai+Jamjuree:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;1,200;1,300;1,400;1,500;1,600;1,700&display=swap');

:root
{
    /* ## Colors
    ### Primary */
    --Strong-Cyan: hsl(171, 66%, 44%);
    --Light-Blue: hsl(233, 100%, 69%);
    /* ### Neutral */
    --Dark-Grayish-Blue: hsl(210, 10%, 33%);
    --Grayish-Blue: hsl(201, 11%, 66%);
}

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

html , body
{
    height: 100%;
    width: 100%;
}

img,video,iframe
{
    max-inline-size:100%;
    block-size:auto;
}


body 
{
    font-family: "Bai Jamjuree", sans-serif;
    font-size: 18px;
    background-color: white;
    
}


header 
{
    width: 100%;
    height: 50vh;
    background-image: url(./images/bg-header-mobile.png);
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    
}

main .header-content 
{
    padding: 0 1rem;
    h1,p
    {
        text-align: center;
    }
    h1 
    {
        font-size: 2.4rem;
        margin-bottom: 1rem;
    }
    p 
    {
        font-size: 1.5rem;
        color: var(--Grayish-Blue);
        margin-bottom: 1rem;
    }

    .btn-container 
    {
        display: flex;
        row-gap: 1rem;
        flex-direction: column;
        margin-bottom: 3rem;


        button
        {
            padding: 1.2rem 0;
            border: none;
            border-radius: 100px;
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: transform 0.2s ease-in-out ;
        }

        button:first-child
        {
            background-color: var(--Strong-Cyan);
        }
        button:last-child
        {
            background-color: var(--Light-Blue);
        }

    }



}

p 
{
    color: var(--Grayish-Blue);
    line-height: 1.8rem;
    font-size: 1.4rem;
}

main > * 
{
    text-align: center;
}

main .main-content 
{
    .top 
    {
        text-align: center;
        margin-bottom: 2rem;

        h2 
        {
            font-size: 2rem;
            margin-bottom: 1rem;
        }
       
    }
}



.vertical-card 
{
    margin-bottom: 3rem;
    h3 
    {
        margin: 0;
        margin-top: 1rem;
    }
    p 
    {
        margin: 0;
        margin-top:.5rem;
    }
}


.horizontal-cards .card 
{
    margin: 3rem 0;
}




.brands 
{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    row-gap: 3rem;
    margin-bottom: 3rem;
}



.downloads 
{

    margin-bottom: 2rem;
    h3 
    {
        margin-bottom: 2rem;
        font-size: 2rem;
        width: 90%;
        margin: 0 auto;
        
    }
    p 
    {
        margin-bottom: 2rem;
    }

   

    .download-buttons 
    {
        display: flex;
        flex-direction: column;
        align-items: center;
        row-gap: 1.5rem;
    }
    button
    {
        width: 90%;
        padding: 1.2rem 0;
        border: none;
        border-radius: 100px;
        color: white;
        font-weight: 600;
        cursor: pointer;
        transition: transform 0.2s ease-in-out ;
    }

    .ios 
    {
        background-color: var(--Strong-Cyan);
    }
    .mac 
    {
        background-color: var(--Light-Blue);
    }
}


footer 
{
    display: flex;
    flex-direction: column;
    align-items: center;


    .links 
    {
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        row-gap: 2rem;
        text-align: center;
        a 
        {
            text-decoration: none;

        }
    }

    .social-links 
    {
        margin-top: 2rem;
        display: flex;
        justify-content: space-between;
        column-gap: 4rem;

    }
}

