* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  min-height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Roboto", sans-serif;
}

.game-container {
  min-width: 544px;
  max-width: 544px;
}

.game-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.stats {
  color: #FFF;
  font-size: 16px;
}

.cards-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.card {
  width: calc(25% - 5px);
  aspect-ratio: 1;
  background-color: #8234e9;
  border: 2px solid #5a0caf;
  border-radius: 10px;
  background-image: url(./assets/lines.svg);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.revealed {
  background-color: #FFFFFF;
  border-color: #dadada;
  cursor: not-allowed;
}

.card-emoji {
  display: none;
}

.revealed .card-emoji {
  display: block;
}

.button {
  width: 100%;
  height: 52px;
  background-color: #8234e9;
  color: #ffffff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 7px;
  border: 2px solid #5a0caf;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
  transition: background-color 0.4s;
  margin-top: 32px;
}

.button:hover {
  background-color: #7029d6;
}
