html {
	background-color: white;
	color: black;
}
	
body {
	height: 100vh;
	margin: 0;
	display: flex;
	flex-direction: column;
	font-family: system-ui, sans-serif;
}

header {
	background-color: black;
}
h1 {
	padding: 0 10px;
	text-align: center;
}
header svg {
	display: inline-block;
}
#oliveLogo {
	height: 42px;
	fill: #aba000;
}
#oliveText {
	height: 28px;
	fill: white;
}

.srOnly {
	clip-path: inset(50%);
	height: 1px;
	width: 1px;
	overflow: hidden;
	position: absolute;
	white-space: nowrap;
}

main {
	flex: 1;
	width: 90%;
	max-width: 700px;
	margin: 0 auto;
}
img {
	display: block;
	width: 100%;
	max-width: 600px;
	margin: 48px auto;
}
h2 {
	text-align: center;
}

footer {
	padding: 1.2em 0;
	font-size: 10px;
	color: grey;
	text-align: center;
}

@media screen and (max-width: 450px) {
	#oliveLogo {
		height: 36px;
	}
	#oliveText {
		height: 24px;
	}
	
	h2 {
		font-size: 1.25em;
	}
}

@media screen and (max-width: 374px) {
	main {
		width: 95%;
	}
	
	#oliveLogo {
		height: 34px;
	}
	#oliveText {
		height: 22px;
	}
	
	img {
		margin: 34px auto;
	}
	
	h2 {
		font-size: 1.1em;
	}
	p {
		padding: 0 2% 0 2.5%;
	}
}