@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: white;
  font-family: "Nunito", sans-serif;
  flex-direction: column;
}

.container {
  text-align: center;
  padding: 1rem;
}

h1 {
  font-size: 2.5em;
  color: #d32f2f;
}

.buttons {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.yes-button {
  font-size: 1.5em;
  padding: 10px 20px;
  background-color: #fa0561;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.yes-button:hover {
  background-color: #e03777;
}

.no-button {
  font-size: 1.5em;
  padding: 10px 20px;
  background-color: #d3d3d3;
  color: black;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

.gif_container img {
  width: 300px;
  max-width: 90vw;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}

