body {
  margin: 0;
  font-family: "Comfortaa", sans-serif;
  background: #f5f5f5;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.card {
  background: white;
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  width: 400px;
}

img {
  width: 350px;
  border-radius: 15px;
}

h2 {
  margin: 20px 0;
}

.hidden {
  display: none;
}

.yay {
  font-size: 28px;
  font-weight: bold;
  color: #2196f3;
  margin-top: 15px;
}

.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 15px;
  width: 100%;
  position: relative;
}

button {
  padding: 15px 25px;
  font-size: 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.25s;
  white-space: nowrap;
}

#yes_button {
  z-index: 100;
  background: linear-gradient(45deg, #ff2f92, #ff6bb3);
  color: white;
  border: none;
  transform-origin: center;
  max-width: 100%;
}

#no_button {
  z-index: 1;
  background: white;
  border: 1px solid black;
  position: relative;
  font-family: "Caveat", cursive;
  font-size: 22px;
  width: 170px;
  height: 55px;
  overflow: hidden;
  text-align: center;
}

#no_button span {
  display: inline-block;
}
.data {
  position: relative;
  z-index: 10000;
}

