@import url('https://fonts.googleapis.com/css2?family=Signika+Negative:wght@300..700&display=swap');

* {
  font-family: "Signika Negative", sans-serif;
  font-weight: 600;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: hsl(0, 0%, 90%);
  flex-direction: column;
  padding: 1rem;
  overflow: hidden;
}

.container {
  text-align: center;
}

h1 {
  font-size: 1.8rem;
  color: hsl(0, 0%, 20%);
}

.yes-button {
  margin-top: 1rem;
  font-size: 1.5em;
  padding: 10px 20px;
  margin-right: 10px;
  background-color: #f59c9c;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.no-button {
  margin-top: 1rem;
  font-size: 1.5em;
  padding: 10px 20px;
  background-color: #999999;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.gif_container img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}