@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");

* {
  background-color: black;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  /* flex-direction: column; */
  height: 100vh;
  background-color: #282a35;
}

.wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 600px;
  height: 400px;
  border-radius: 20px;
  position: relative;
}

.para-text {
  color: white;
  font-size: 2em;
  font-weight: 700;
  margin: 12px 0px;
  letter-spacing: 1px;
}

.img {
  width: 230px;
  height: 170px;
}

#yes-btn {
  padding: 8px;
  width: 150px;
  background-color: blue;
  border-radius: 20px;
  outline: none;
  color: white;
  font-size: 15px;
  border: 1px solid lightgreen;
  /* position: absolute; */
}

#no-btn {
  width: 150px;
  padding: 8px;
  background-color: blue;
  color: white;
  font-size: 15px;
  border-radius: 20px;
  border: 1px solid lightgreen;
  position: absolute;
  cursor: pointer;
}

#yes-btn:hover {
  background-color: rgb(10, 166, 250);
  color: #282a35;
}

#no-btn:hover {
  background-color: rgb(10, 166, 250);
  color: #282a35;
}
