* {
	margin: 0;
	padding: 1;
	box-sizing: border-box;
}

html, body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: sans-serif;
}

body {
	display: flex;
	flex-direction: column;
	background: white;
}

.headerBar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0.5rem;
	background: black;
}

#headerLeft {
	font-weight: bold;
	color: white;
	transition: color 0.5s ease-in-out;
}

#headerText {
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	font-weight: bold;
	flex-grow: 1;
}

#headerRight {
	font-weight: bold;
	color: white;
	transition: color 0.5s ease-in-out;
}

a {
	text-decoration: none;
	color: inherit;
}

ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

#sidebarMenu {
	font-weight: bold;
	color: white;
	position: fixed;
	top: 2rem;
	left: -250px;
	width: 250px;
	height: 100vh;
	background: black;
	padding: 0.5rem 0.5rem;
	transition: left 0.3s ease-in-out;
	z-index: 1000;
}

#side1,
#side2,
#side3,
#side4 {
	transition: color 0.5s ease-in-out;
	color: white;
}

#playdayInHeader {
	color: white;
}

#proInHeader {
	color: white;
	transition: color 0.5s ease-in-out;
}

main {
	flex: 1;
	text-align: center;
}

#buttonOutput {
	height: 20px;
	overflow: hidden;
	text-align: center;
}

#testImage {
	max-width: 30%;
	height: auto;
	padding: 20px;
	box-sizing: border-box;
	display: block;
	margin: 0 auto;
	position: relative;
	transition: top 1s ease-in-out, opacity 0.5s ease-in-out;
	top: 0;
	opacity: 1;
}

footer {
	background: #333;
	color: white;
	text-align: center;
	padding: 20px:
}