@import url("https://fonts.googleapis.com/css2?family=Balsamiq+Sans:ital,wght@0,400;0,700;1,400;1,700&display=swap");
* {
  font-family: "Balsamiq Sans", sans-serif !important;
}
body {
  background-color: #f7e9e9f5;
  font-weight: 400;
}

#container {
  width: 300px;
  height: 300px;
  margin: auto;
  text-align: center;
}

#question {
  font-size: 24px;
  margin-top: 50px;
}

#options {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.option {
  width: 100px;
  height: 30px;
  border-radius: 50px;
  border: none;
  background-color: #ffd2d2;
  cursor: pointer;
  line-height: 30px;
  margin: 20px;
}
#no {
  transition:
    left 0.3s ease,
    top 0.3s ease;
}

#image {
  width: 250px;
  height: 250px;
  margin: auto;
  margin-top: 20px;
  border: 1px solid #ccc;
  border-radius: 25px;
  object-fit: cover; /* fill the box, may crop */
}

/* Popup overlay */
#popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffd2d2; /* soft pink overlay */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* Popup content */
#popup-content {
  background: #fff0f5; /* lavender blush */
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 0 20px #ffd2d2;
  font-family: "Cursive", sans-serif;
  animation: popup-appear 0.5s ease;
}
#timer {
  font-size: 24px;
  color: red; /* deep pink */
  margin-top: 15px;
  font-weight: bold;
}
/* Button inside popup */
#close-popup {
  margin-top: 20px;
  padding: 10px 20px;
  border: 1px solid #ffd2d2;
  color: #ffd2d2;
  border-radius: 10px;
  cursor: pointer;
  font-size: 16px;
}

/* Popup animation */
@keyframes popup-appear {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
