/* =========================
MOBILE FIRST CSS
========================== */

h1, h2 {
    font-weight: 600;
}


h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
}


h2 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}


p {
    margin-bottom: 1rem;
}


.section {
    background: #fff;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}


strong {
    font-weight: bold;
}

/* =========================
TABLET / DESKTOP
========================== */

@media(min-width: 768px) {

    h1 {
        font-size: 2.2rem;
    }

    .section {
        padding: 25px;
    }
}