body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: whitesmoke;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

.wrapper {
  text-align: center;
}

.gif {
  width: 100%;
  height: auto;
  margin: 15px 0;
}

.question {
  font-size: 1.5em;
  color: #e94d58;
}

.btn-group {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

button {
  width: 150px;
  height: 50px;
  color: white;
  font-size: 1.2em;
  border-radius: 30px;
  outline: none;
  cursor: pointer;
  box-shadow: 2px 4px gray;
  border: 2px solid #e94d58;
}

.yes-btn {
  background: #55e94d;
}

.no-btn {
  background: white;
  color: #e94d58;
  margin-left: 10px;
}

.maybe-btn {
  background: rgb(169, 47, 13);
  color: #ffffff;
  margin-left: 10px;
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #333;
  color: white;
  text-align: center;
  padding: 10px;
}

.footer p {
  margin: 5px 0;
  font-size: 0.8em;
}

.footer span {
  font-weight: bold;
  color: #e94d58;
}
