body {
	background-color: #E0E0E0;
	margin: 0;
	padding: 0;
	font-family: 'Press Start 2P', cursive;
}

html, body {
	height: 100%;
	overflow: hidden;
  }
  

header {
	background-color: #4CAF50;
	color: #FFFFFF;
	text-align: center;
	padding: 20px;
}

h1 {
	margin: 0;
	font-size: 3rem;
	letter-spacing: 5px;
}

main {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: calc(100vh - 140px);
}

.game-button {
	background-color: #FFFFFF;
	color: #4CAF50;
	font-size: 2rem;
	font-weight: bold;
	border: none;
	border-radius: 10px;
	padding: 20px;
	margin: 10px;
	cursor: pointer;
	transition: transform 0.3s ease-in-out;
	font-family: 'Press Start 2P', cursive;
}

.game-button:hover {
	transform: scale(1.1);
}

.game-button:active {
	animation: pulse 0.5s;
}

#snake {
	background-color: #4CAF50;
	color: #FFFFFF;
}

#tic-tac-toe {
	background-color: #9CCC65;
}

#brick-breaker {
	background-color: #C8E6C9;
}

@keyframes pulse {
	0% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.1);
	}
	100% {
		transform: scale(1);
	}
}

footer {
	background-color: #FFFFFF;
	color: #4CAF50;
	text-align: center;
	padding: 20px;
}

@font-face {
    font-family: "Nintendo";
    src: url("./Fonts/PixelEmulator-xq08.ttf") format("truetype");
  }
  