html, body {
	height: 100%;
	margin: 0;
	font-size: 110%;
}

body {
	display: flex;
	justify-content: center;
	align-items: center;
	font-family: "Tahoma", sans-serif;
	text-align: center;
	background: #262525;
}

#wip {
	color: red;
	font-family: "Courier New";
	
	padding: 0;
	margin: 0;
}

#where {
	padding: 0;
	margin: 0;
	color: white;
}

#button-container {
	display: flex; /* Makes the children (buttons) align horizontally */
	gap: 20px; /* Adds space between the buttons */
	justify-content: center; /* Centers the buttons within the container */
	margin-top: 20px; /* Add some space above the buttons */
}

.nav-button {
	padding: 10px 20px;
	background-color: #444444; /* A nice green color */
	color: white;
	text-decoration: none; /* Removes underline from the link */
	border: 3px solid #444444;
	border-radius: 7px;
	cursor: pointer;
	transition: border 0.3s;
}

.nav-button:hover {
	border: 3px solid red;
}
