*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: "Inclusive Sans", sans-serif;
    background:white;
}



header{
    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:1rem;

    background:#f4f4f4;
}

.logo-area{
    display:flex;
    align-items:center;
    gap:.75rem;
}

.logo-area img{
    width:55px;
}

.logo-area h1{
    font-size:2rem;
    font-weight:700;
}

.menu-btn{
    border:none;
    background:none;
    font-size:1.8rem;
    cursor:pointer;
}


.card{
    width:100%;
    text-align:center;
    padding:2rem 1rem;
}

.card h2{
    margin-bottom:1rem;
    font-size:2rem;
}

.card p{
    font-size:1.5rem;
    line-height:1.3;
    margin:1rem auto;
    max-width:350px;
}

.card img{
    width:100%;
    max-width:230px;
    display:block;
    margin:1.5rem auto;
}

.card h3{
    font-size:1.4rem;
    line-height:1.2;
}

/* SECTION COLORS */

.lightred-card{
    background:#efd1d1;
}

.lightyellow-card{
    background:#ece7c8;
}

.lightgreen-card{
    background:#c8e4cd;
}

.red-btn,
.yellow-btn,
.green-btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    border-radius:30px;

    padding:.6rem 1.5rem;

    color:white;

    font-weight:bold;

}


.red-btn{
    background:#c90d0d;
}

.yellow-btn{
    background:#f0c51b;
}

.green-btn{
    background:#0ebf2a;
    display:flex;
    align-items:center;
    gap:.5rem;
    margin:auto;
}

.dropdown-btn{
    background:white;
    border:3px solid #0ebf2a;
    color:#0ebf2a;
    padding:.5rem 2rem;
    font-size:1.5rem;
    font-family:inherit;
    font-weight:700;
    margin-bottom:1.5rem;
}


@media(min-width:768px){

    .card{
        padding:3rem;
    }

    .card p{
        max-width:700px;
    }

    .card img{
        max-width:350px;
    }
    h1,h2{font-family: jaro;

    }
}


.nav-links{

    display:flex;
    gap:20px;
    align-items:center;

}

.nav-links a{

    text-decoration:none;
    color:#111;
    font-weight:bold;
    font-size:1rem;

    padding:8px 14px;

    border-radius:25px;

}

.nav-links a:hover{

    background:#0EBF2A;
    color:white;

}@media screen and (max-width:767px){

header{

    flex-direction:column;
    gap:20px;

}

.nav-links{

    flex-direction:column;

    width:100%;

    text-align:center;

}

}
@media screen and (min-width:768px){

header{

    flex-direction:row;

}

.nav-links{

    flex-direction:row;

}

}