/* Define colour palette */
:root {
	--black: #08323A;
	--dark: #006080;
	--mid: #34BDD9;
	--light: #67E6E6;
	--white: #CAFBFF;
	--head-height: 70px;
	--foot-height: 70px;
}
/* Resets some defaults */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,800;1,400;1,600;1,800&display=swap');
body * {
	box-sizing: border-box;
	font-family: "Open Sans", helvetica, sans-serif;
}
/* Sets standards for text */
h1 {
	font-size: 36px;
	font-weight: 800;
}
h2 {
	font-size: 30px;
	font-weight: 800;
}
h3 {
	font-size: 24px;
	font-weight: 600;
}
h4 {
	font-size: 20px;
	font-weight: 600;
}
p {
	margin: 0;
	font-size: 16px;
	font-weight: 400;
}