/* copy and paste to style.css */

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

#stats {
  margin-bottom: 20px;
}

#stats h2 {
  display: inline-block;
  margin: 0 15px;
  color: #333;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-size: cover;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  background-color: aliceblue;
  padding-top: 0;
}

.content-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#board {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(4, auto);
  gap: 10px;
  width: fit-content;
  padding: 10px;
  margin-bottom: 15px;
}

.card {
  height: 192px;
  width: 135px;
  border-radius: 6px;
  object-fit: cover;
  cursor: pointer;
}

#resetButton {
  margin-top: 10px;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  background-color: #4554a0;
  color: white;
  border-radius: 5px;
  cursor: pointer;
}

#resetButton:hover {
  background-color: #31408c;
}
