* {
  margin-top: 0px;
}
h1 {
  font-family: "Amatic SC", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
}

header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.scores {
  display: flex;
  font-family: monospace;
  font-size: 1.2rem;
}
main .item {
  height: 180px;
  width: 130px;
  background-color: bisque;
  border: 1.5px solid black;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
main {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 20px;
  justify-items: center;
  margin: 40px auto;
}
main .item img {
  max-height: 80%;
  max-width: 80%;
  object-fit: contain;
  transition: 0.3s ease-in-out;
}
.revealed {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}
#meow {
  cursor: pointer;
}
