* {
  padding: 0;
  margin: 0;
  outline: 0;
}
.container {
  height: 100vh;
  width: 100vw;
  text-align: center;
  color: #333;
  background: pink;
}
.love,
.yes,
.no {
  padding-top: 15%;
}
.love span {
  color: red;
}
h2 {
  font-size: 72px;
  margin-bottom: 20px;
}
a {
  font-size: 24px;
  text-decoration: none;
  padding: 5px 10px;
  margin-top: 20px;
  border: 3px solid #ddd;
  border-radius: 10px;
}
#no {
  color: red;
  background: #eee;
  margin-right: 50px;
}
#yes {
  color: green;
  background: #eee;
}

.yes img:not(#img2) {
  height: 30px;
  width: 30px;
  animation: image 4s linear infinite;
}

#img2 {
  height: 300px; /* Adjust the height and width as needed */
  width: 300px;
}

@keyframes image {
  0% {
    transform: scale(0.5);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(0.5);
  }
}
