/* Body styles */
body {
  background-color: #f5f5f5;
  font-family: "Roboto", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  height: 100vh;
  margin: 0;
}

a {
  text-decoration: none;
  color: #006666;
}

.container {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Title styles */
.title {
  font-size: 3rem;
  margin-bottom: 2rem;
  color: #333;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

/* Game grid styles */
.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Slot styles */
.slot {
  background-color: #ddd;
  border-radius: 8px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease;
  width: 100px;
}

.slot:hover {
  background-color: #ccc;
}

/* Win message styles */
.win-message {
  text-align: center;
  margin-top: 2rem;
}

.hidden {
  display: none;
}

#player {
  font-weight: bold;
  color: #008080;
}

/* Play again button styles */
#play-again-button {
  background-color: #008080;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

#play-again-button:hover {
  background-color: #006666;
}
