body {
	font-family: Arial, sans-serif;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 90vh;
	margin: 0;
	background-color: #d4d3cc;
  }

  .game-container {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	align-items: center;
	justify-content: center;
}

  .game-container h1 {
	font-size: 3rem;
}

  .score-container button {
	margin-left: 1.5rem;
	padding: 0.5rem 1.5rem;
	font-size: 1rem;
	border: none;
	border-radius: 0.5rem;
	background-color: #575050;
	color: #fff;
}
  
  .score-container span {
	font-size: 1.5rem;
}

  .grid-container {
	display: grid;
	grid-template-columns: repeat(4, 60px);
	grid-template-rows: repeat(4, 60px);
	gap: 10px;
	background-color: #bbada0;
	padding: 10px;
	border-radius: 10px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  }

  .grid-cell {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 24px;
	font-weight: bold;
	border-radius: 5px;
	background-color: #cdc1b4;
	color: #776e65;
	transition: background-color 0.2s, transform 0.2s;
  }
  
  .cell-0 {
	background-color: #847979;
	color: #847979;
	z-index: 0;
}

.cell-2 {
	background-color: #c3c3c3;
	color: #213547;
	z-index: 1;
}

.cell-4 {
	background-color: #77b6b3;
	color: #213547;
	z-index: 1;
}

.cell-8 {
	background-color: #03bd92;
	color: #213547;
	z-index: 1;
}

.cell-16 {
	background-color: #4db555;
	color: #213547;
	z-index: 1;
}

.cell-32 {
	background-color: #30e21c;
	color: #213547;
	z-index: 1;
}

.cell-64 {
	background-color: #cea465;
	color: #213547;
	z-index: 1;
}

.cell-128 {
	background-color: #cf8320;
	color: #213547;
	z-index: 1;
}

.cell-256 {
	background-color: #e05e5e;
	color: #213547;
	z-index: 1;
}

.cell-512 {
	background-color: #c42929;
	color: #213547;
	z-index: 1;
}

.cell-1024 {
	background-color: #e491e5;
	color: #213547;
	z-index: 1;
}

.cell-2048 {
	background-color: #c200c9;
	color: #213547;
	z-index: 1;
}

  #score {
	margin-bottom: 20px;
	font-size: 24px;
	font-weight: bold;
	color: #776e65;
  }
  