
body {
  font-family: 'Georgia', serif;
  background-color: #fffdf7;
  background-image: url('https://www.transparenttextures.com/patterns/white-diamond.png');
  margin: 0;
  padding: 2rem;
  text-align: center;
  color: #6e4b33;
}
h1 {
  color: #a67c52;
}
.counter {
  font-size: 1.5rem;
  margin: 1.5rem 0;
}
.cat-container {
  display: flex;
  justify-content: center;
}
#cat {
  width: 300px;
  cursor: pointer;
  transition: transform 0.1s ease;
}
#cat:active {
  transform: scale(0.97);
}
footer {
  margin-top: 3rem;
  font-size: 0.9rem;
  color: #a67c52;
}
