@charset "UTF-8";
/*   Lauren Bonner 2025 - MOBILE FIRST CSS   */

/* COLOURS

*/

body {
	background-color: white;
}
html, body {
	height: 100%;
	/* overflow: hidden; */
}
body, p, th, td, li, legend, input, label {
	font: normal 1.5vw 'Jost', sans-serif;
	color: #999;
	text-align: center;
	letter-spacing: 2px;
}
strong {
	font-weight: 500;
	letter-spacing: -0.01em;
}
a:link, a:visited {
	color: #006699;
	text-decoration: none;
}
a:hover, a:active, a:focus {
	text-decoration: underline;
}
.wrapper {
	height: 100%;
	padding:0;
	margin:0;
}
ol li {
	list-style: decimal;
}

/* HEADER */
/* ====== */

main {
	height: 100vh;
	width: 50vw;
	margin: 0 auto;
	padding: 10vh 0 15vh 0;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 50px;
}

/*  MOBILE screens  */
@media screen and (max-width: 768px) {
	main {
		width: 100vw;
	}
	p {
		font-size: 4vw;
	}
}
