* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  font-family: "Dancing Script", cursive;
}

p,
h1,
h2,
h3,
h4 {
  display: inline-block;
  margin-block-start: 0em;
  margin-block-end: 0em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding-inline-start: 0px;
}

body {
  background-color: rgb(255, 151, 186);
}

img {
  width: 70px;
  height: 70px;
}

.outer_wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
  max-width: 2000px;
  max-height: 1000px;
  z-index: -9999;
}

.panda_wrapper {
  position: absolute;
  width: 100px;
  height: 100px;
  overflow: hidden;
  transition: 2s;
  z-index: 1;
}

.panda_wrapper svg {
  fill: rgb(173, 1, 87);
  display: block;
}

.panda_wrapper.stop {
  transition: 0 !important;
}

.panda_inner_wrapper {
  height: 100%;
  width: 100%;
  transition: 0;
}

.facing_upleft,
.facing_left,
.facing_downleft {
  transform: scale(-1, 1);
}

.panda_sprite {
  position: absolute;
  height: 500px;
  width: calc(13 * 100px);
  pointer-events: none;
}

.panda_sprite img {
  height: 100px;
  width: 100%;
  display: block;
}

.hit_wrapper {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}

.hit_area {
  height: 50px;
  width: 40px;
  display: flex;
  flex-wrap: wrap;
}

.panda_wrapper.stop .hit_area {
  margin-top: 10px;
  height: 40px;
}

/* need to flip because the parent divs are flipped */
.facing_upleft .hit_area,
.facing_left .hit_area,
.facing_downleft .hit_area {
  transform: scale(-1, 1);
}

.hit_corner {
  height: 50%;
  width: 50%;
  opacity: 0.1;
}

.sign {
  position: fixed;
  font-family: Arial, Helvetica, sans-serif;
  color: white;
  bottom: 10px;
  right: 10px;
  font-size: 10px;
}

a {
  color: white;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.content {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  z-index: 10;
}

.content .question {
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  margin: 0 20px;
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  background-color: white;
  padding: 10px 70px;
  border-radius: 70px;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
}

.content .answer {
  display: flex;
  width: 100%;
  height: fit-content;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.content .answer .option {
  width: fit-content;
  height: fit-content;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  font-weight: bold;
  font-size: 23px;
  padding: 20px 50px;
}

.temp {
  color: transparent;
}

.accept {
  background-color: #0dc681;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  color: black;
}

.accept:hover {
  transform: scale(1.05);
}

.reject {
  position: absolute;
  background-color: #da413c;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.2);
  color: black;
  transform: translate(-50%, 0%);
  transition: all 0.3s ease;
}

@media (max-width: 480px) {
  .content .question {
    font-size: 17px;
    padding: 10px 30px;
    border-radius: 10px;
    text-align: center;
    flex-direction: column;
  }
  .content .answer .option {
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 5px;
  }

  .content .question img {
    width: 30px;
    height: 30px;
  }

  .accept,
  .reject {
    width: 60px;
    height: 30px;
    font-size: 14px;
  }
.notify .facebook {
  width: 10px;
  height: 10px;
  transform: scale(0.7);
}
}

.notify {
  width: fit-content;
  height: fit-content;
  margin: 10px auto;
  padding: 3px 10px;
  gap: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: white;
  background-color: #ff6f91;
  border-radius: 10px; /* Bo góc mềm mại */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Bóng đổ nhẹ */
  transition: all 0.3s ease; /* Hiệu ứng mềm khi hover */
  border: none;
}

.notify .facebook {
  width: 30px;
  height: 30px;
}

.notify:hover {
  background-color: #ff85a1; /* Màu sáng hơn khi hover */
  box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.3); /* Tăng bóng đổ khi hover */
  transform: translateY(-2px); /* Nhẹ nhàng nhấc lên khi hover */
}
