body {
  text-align: center;
  font-family: Arial, sans-serif;
  background-color: #222;
  color: white;
}

p {
  font-size: 2rem;
  margin-top: 10px;
  color: yellow;
}

.game-container {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 10px;
  width: 600px;
  height: 600px;
  margin: 20px auto;
  border: 2px solid white;
  background-color: black;
}

.card {
  width: 80px;
  height: 80px;
  background-color: yellow;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  cursor: pointer;
  user-select: none;
}

.matched {
  background-color: lightgreen;
  pointer-events: none;
}

.card.flipped {
  background-color: white;
  color: black;
}

#scores {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-size: 1.5rem;
  margin-bottom: 10px;
}
