body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: #f9e3e3;
  font-family: 'Arial', sans-serif;
  flex-direction: column;
}

.color-splash {
  animation: colorSplash 5s infinite;
  font-weight: bold;
}

@keyframes colorSplash {
  0% {
      color: #1900ff;
  }
  25% {
      color: #e6b906;
  }
  50% {
      color: #58e54b;
  }
  75% {
      color: #e60909;
  }
  100% {
      color: #0077ff;
  }
}

.text-utama {
  animation: text-utama 5s infinite;
  font-weight: bold;
}

@keyframes text-utama {
  0% {
      color: #ff008c;
  }
  25% {
      color: #ff0000;
  }
  50% {
      color: #f80000;
  }
  75% {
      color: #b62fb6;
  }
  100% {
      color: #e600a1;
  }
}

.container {
  text-align: center;
}

h1 {
  font-size: 2.5em;
  color: #d32f2f;
}

.buttons {
  margin-top: 20px;
}

.yes-button {
  font-size: 1.5em;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.no-button {
  font-size: 1.5em;
  padding: 10px 20px;
  background-color: #f44336;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.gif_container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}