body{
	font-family: system-ui, san-serif; /*ctrl + shift + r = super refresh*/
	font-size: 100%;
	line-height: 130% /* or "1.3 em" would work. 1.3 = 130% convenient to use */
}

h1{
	font-size: 2em; /*Cannot be seperated by " " as space has meaning in CSS. fixed unit of measurement*/
}

h2{
	font-size: 6vw; /*Other type of unit for font size, viewport width (vh = height). Device dependent, percentage of screen*/
	font-family: serif; /*rules applied by specificity, high = prio*/
}