/* Resetting defaults */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	background-color: rgb(255, 129, 165);
	color: black;
	font-family: Verdana;

	display: flex;
}


/* Header styles */
header {
	background-color: lightblue;
	position: fixed;
	display: flex;

	top: 0;
	width: 100%;
	height: 3.5em;

	z-index: 100;
}


/* Footer */
footer {
	background-color: lightblue;
	height: 3em;
}