body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  background: pink;
}

h1 {
  margin-bottom: 40px;
}

.buttons {
  position: relative;
  width: 300px;
  height: 200px;
}

button {
  padding: 15px 30px;
  font-size: 18px;
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

#yes {
  background-color: #ff4d6d;
  color: white;
}

#no {
  background-color: white;
  color: black;
  position: absolute;
}