@import url("https://fonts.googleapis.com/css2?family=Lilita+One&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Pacifico&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nanum+Brush+Script&display=swap");
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

@keyframes fadeInAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes shake {
  0%, 100% {
    rotate: -10deg;
  }
  50% {
    rotate: 10deg;
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes slideRight {
  0% {
    left: -100%;
  }
  100% {
    left: 0;
  }
}
@keyframes slideLeft {
  0% {
    right: -100%;
  }
  100% {
    right: 0;
  }
}
@keyframes btnClosed {
  0% {
    rotate: -45deg;
  }
  100% {
    rotate: 0deg;
  }
}
@keyframes messageClosed {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  70% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 0;
    transform: scale(0);
  }
}
@keyframes messageOpened {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  70% {
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes btnOpenHide {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}
@keyframes btnOpenShow {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pulsatingBtn {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes messageBgShow {
  0% {
    opacity: 0;
    display: none;
  }
  70% {
    opacity: 0;
  }
  100% {
    opacity: 1;
    display: block;
  }
}
@keyframes messageBgHide {
  0% {
    opacity: 1;
    display: block;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    display: none;
  }
}
@keyframes messageBodyImgShow {
  0% {
    opacity: 0;
    top: -150px;
    scale: 0;
  }
  50% {
    scale: 1.2;
  }
  100% {
    opacity: 1;
    top: -150px;
    scale: 1;
  }
}
@keyframes messageBodyImgHide {
  0% {
    opacity: 1;
    top: -150px;
    scale: 1;
  }
  100% {
    opacity: 0;
    top: -150px;
    scale: 0;
  }
}
@keyframes hidePreloader {
  0% {
    scale: 1;
  }
  70% {
    scale: 1.3;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    sale: 0;
    display: none;
  }
}
.noselect {
  -webkit-touch-callout: none; /* Disable iOS callouts */
  -webkit-user-select: none; /* Safari */ /* Konqueror HTML */
  -moz-user-select: none; /* Firefox */ /* Internet Explorer/Edge */
  user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera, and Firefox */
}

/* Fade-in effect for #content */
#content.fade-in {
  animation: fadeInAnimation 1s ease-in-out forwards;
}

#bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
#bg .bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center center;
     object-position: center center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

#content {
  display: none;
  position: relative;
  z-index: 1;
  padding: 20px;
}
#content #header {
  padding-top: 5vH;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}
#content #header .title {
  text-align: center;
  font-family: "Pacifico", cursive;
  color: #EA3E83;
  font-size: 32px;
  padding-bottom: 30px;
  text-shadow: -3px -3px 0 #fff, 3px -3px 0 #fff, -3px 3px 0 #fff, 3px 3px 0 #fff;
}
#content #header .title-2 {
  font-family: "Poppins", sans-serif;
  color: #fff;
  background-color: #EA3E83;
  padding-bottom: 15px;
}
#content #header .title-2 span {
  font-weight: 400;
}
#content #sub-header {
  display: none;
  font-family: "Poppins", sans-serif;
  justify-content: center;
  gap: 0px;
  font-weight: bold;
}
#content #sub-header span {
  display: inline-block;
  background-color: #e87089;
  color: #fff;
  padding: 10px 15px;
  box-shadow: -3px 3px 0 #fff;
}
#content #sub-header span:nth-child(1) {
  transform: rotate(10deg);
  background-color: #ff4ee1;
  margin-right: 20px;
  padding-right: 10px;
  padding-left: 10px;
  animation: shake 1.5s infinite ease-in-out alternate;
}
#content #sub-header span:nth-child(2) {
  transform: rotate(-10deg);
  background-color: #ea3e83;
  animation: shake 1.2s infinite ease-in-out alternate;
}
#content #sub-header span:nth-child(3) {
  transform: rotate(0deg);
  background-color: #e53fab;
  animation: shake 1.6s infinite ease-in-out alternate;
}
#content #sub-header span:nth-child(4) {
  transform: rotate(10deg);
  background-color: #bf6fd3;
  animation: shake 1.3s infinite ease-in-out alternate;
}
#content #message {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
#content #message .btn-open {
  margin-top: 10px;
  padding: 10px 15px;
  background: #ea3e83;
  font-family: "Poppins", sans-serif;
  color: #fff;
  border-radius: 14px;
  border: 2px solid #fff;
  text-decoration: none;
  opacity: 0;
  z-index: 91;
}
#content #message .msg-bg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 90;
  background-color: rgba(0, 0, 0, 0.65);
}
#content #message .msg-body {
  position: relative;
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  max-width: 640px;
  min-width: 300px;
  margin: 15px 30px 10px 20px;
  padding: 20px;
  background: inherit;
  backdrop-filter: blur(20px); /* Adjust the blur radius as needed */
  -webkit-backdrop-filter: blur(20px); /* For Safari */
  background-color: rgba(255, 255, 255, 0.9); /* Adjust opacity here */
  padding: 20px;
  color: rgb(0, 0, 0); /* Adjust text color to contrast with the background */
  z-index: 99;
  opacity: 0;
}
#content #message .msg-body.hidden {
  display: none;
}
#content #message .msg-body .btn-close {
  display: block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  font-size: 32px;
  font-weight: 200;
  text-align: center;
  border-radius: 50%;
  position: absolute;
  top: -16px;
  right: -16px;
  background-color: rgb(234, 62, 131);
  color: #fff;
  rotate: -45deg;
  border: 2px solid #fff;
  cursor: pointer;
}
#content #message .msg-body .msg-body-img {
  display: block;
  position: absolute;
  height: 150px;
  width: 300px;
  left: calc(50% - 150px);
  top: -50px;
  text-align: center;
  opacity: 0;
}
#content #message .msg-body .msg-body-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center top;
     object-position: center top;
}
#content #message.opened .btn-open {
  animation: btnOpenHide 0.3s forwards ease-in-out;
}
#content #message.opened .msg-body-img {
  animation: messageBodyImgShow 0.3s forwards ease-in-out;
  animation-delay: 0.5s;
}
#content #message.opened .msg-bg {
  animation: messageBgShow 0.5s forwards ease-in-out;
}
#content #message.opened .msg-body {
  animation: messageOpened 0.5s forwards ease-in-out;
}
#content #message.closed .btn-open {
  animation: btnOpenShow 0.3s forwards ease-in-out, pulsatingBtn 1.5s infinite ease-in-out;
  animation-delay: 0.3s;
}
#content #message.closed .msg-body-img {
  animation: messageBodyImgHide 0.3s forwards ease-in-out;
}
#content #message.closed .msg-bg {
  animation: messageBgHide 0.5s forwards ease-in-out;
}
#content #message.closed .msg-body {
  animation: messageClosed 0.5s forwards ease-in-out;
}
#content #message.closed .msg-body .btn-close {
  animation: btnClosed 0.2s forwards ease-in-out;
}
#content #footer {
  position: fixed;
  bottom: 140px;
  left: 0;
  right: 0;
}
#content #footer #datetime, #content #footer #venue {
  background-color: rgb(255, 255, 255);
  font-family: "Poppins", sans-serif;
  font-size: 32px;
  position: absolute;
  text-transform: uppercase;
  padding: 3px 20px;
  font-weight: bold;
  color: #000;
}
#content #footer #datetime {
  left: 0;
  animation: slideRight 1s forwards ease-in-out;
}
#content #footer #datetime .time {
  color: #e53fab;
}
#content #footer #venue {
  right: 0;
  text-align: right;
  font-size: 18px;
  background-color: #ea3e83;
  color: #fff;
  padding: 10px 20px;
  animation: slideLeft 1s forwards ease-in-out;
}
#content #footer #venue span {
  display: block;
}

.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  z-index: 9999;
  font-family: "Poppins", sans-serif;
  color: #EA3E83;
}
.preloader.preloader-hidden {
  animation: hidePreloader 0.5s ease-in-out forwards;
}
.preloader .spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #EA3E83;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@media (max-width: 900px) {
  #bg .bg-image {
    -o-object-position: center 35%;
       object-position: center 35%;
  }
  #content {
    padding-left: 0;
    padding-right: 0;
  }
  #content #header {
    flex-direction: column;
    gap: 0;
    padding-top: 0.8vH;
  }
  #content #header .title {
    text-shadow: -2px -2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, 2px 2px 0 #fff;
  }
  #content #header .title-2 {
    width: 100%;
    text-align: center;
    display: none;
  }
  #content #header .title-3 {
    display: block;
  }
  #content #sub-header {
    display: flex;
  }
  #content #footer #venue {
    top: 54px;
    font-size: 14px;
  }
}/*# sourceMappingURL=birthday_v2.css.map */