/* Enter Your Custom CSS Here */
h1 {
    font-size: 32px;
    font-size: 3.2rem;
}

h2 {
    font-size: 26px;
    font-size: 2.6rem;
}

h3,
h4 {
    font-size: 22px;
    font-size: 2.2rem;
}

h5,
h6 {
    font-size: 18px;
    font-size: 1.8rem;
}

/* min-width 641px, medium screens */
/* min-width 641px and max-width 1024px, use when QAing tablet-only issues */
@media only screen and (min-width: 64.063em) {
    h1 {
		font-size: 32px;
	}

	h2 {
		font-size: 26px;
	}

	h3,h4 {
		font-size: 22px;
	}

	h5,h6 {
		font-size: 18px;
	}
}
