body {
  margin: 0;
  background-color: #222;
  font-family: Arial, sans-serif;
  color: yellow;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-x: hidden;
}

.title {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 80px;
  color: #FFD700;
  text-shadow: 2px 2px #000, 4px 4px #444;
  text-align: center;
  margin: 20px 0;
}

#menu, #playerSelect {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#playerSelect h1 {
  font-family: 'Comic Sans MS', cursive, sans-serif;
  font-size: 50px;
  color: #FFD700;
  text-shadow: 2px 2px #000, 4px 4px #444;
  text-align: center;
  margin: 20px 0 0 0;
}

.background-image {
  background: url('player.png') center center / contain no-repeat;
  width: 300px;
  height: 300px;
}

#menu .background-image.menu-bg {
  margin-top: 100px; 
}

#playerSelect .background-image {
  margin-top: 100px;
}

.button-row {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

#menu .button-row.menu-buttons {
  margin-top: 250px; 
}

#playerSelect .button-row {
  margin-top: 150px;
}

button {
  padding: 20px 30px;
  font-size: 24px;
  background-color: #111;
  color: yellow;
  border: 3px solid yellow;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

button:hover {
  background-color: #333;
}

button img {
  width: 120px;
  height: 120px;
  display: block;
  margin-bottom: 5px;
}

canvas {
  border: 2px solid #fff;
  display: block;
  margin-top: 20px;
}
