body {
    font-family: cursive;
    background-color: #b37ad4;
    color: #e0e0e0;
    text-align: center;
    padding: 100px;
}
h1 {
    color: #ffdd57;
}
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ffdd57;
    color: #1a1a2e;
    text-decoration: none;
    font-weight: bold;
    border-radius: 10px;
    margin-top: 20px;
}
.button:hover {
    background-color: #ffd43b;
}
#game-container {
  text-align: center;
  margin-top: 40px;
}

#heart-game {
  position: relative;
  height: 300px;
  overflow: hidden;
  margin: 20px auto;
  max-width: 400px;
  background-color: #fff2;
  border-radius: 15px;
}

#heart {
  position: absolute;
  width: 80px;
  height: 80px;
  cursor: pointer;
  transition: all 0.5s ease;
}