@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
body {
  font-family: 'Poppins', sans-serif;
  background-color: #000;
  color: #fff;
  margin: 0px;
  overflow: hidden;
}
::selection {
  background-color: transparent;
}
#message {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  font-family: 'Kavivanar', san-serif;
  font-size: 40px;
  width: 80%;
  max-width: 280px;
  padding: 15px 15px 50px 15px;
  text-align: center;
  display: none;
  align-content: center;
  justify-content: center;
  background-color: aliceblue;
  border: medium solid #3d455c;
  border-radius: 20px;
  color: #3d455c;
  z-index: 99;
}
#message_ok {
  position: absolute;
  bottom: 10px;
  padding: 10px 20px 10px 20px;
  font-family: sans-serif;
  font-size: 20px;
  background-color: #3d455c;
  color: #fff;
  border-radius: 8px;
  border: medium solid #696882;
}

#sfx-btn {
  position: absolute;
  right: 15px;
  top: 15px;
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 25px;
  padding: 1rem;
  cursor: pointer;
  outline: none;
}
#camera-btn {
  position: absolute;
  right: 15px;
  bottom: 15px;
  width: 60px;
  height: 60px;
  border: 2px solid white;
  border-radius: 50%;
  font-size: 25px;
  padding: 1rem;
  cursor: pointer;
  outline: none;
}
button {
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  outline: none;
  font-weight: 400;
}
#action-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  padding: 0.85rem 5rem;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid white;
  transform: translateX(-50%);
  z-index: 9;
  text-transform: uppercase;
}
button,
button::after {
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
button::before,
button::after {
  background: #fff;
  content: '';
  position: absolute;
  z-index: -1;
}
button:hover {
  color: #000;
  background: white;
  font-weight: 600;
}
#action-btn::after {
  height: 100%;
  left: 0;
  top: 0;
  width: 0;
}
#action-btn:hover:after {
  width: 100%;
}

#overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: #000000;
  z-index: 10;
  opacity: 1;
}

.fade-in {
  animation-name: fade-in;
  animation-duration: 2s;
}

@keyframes fade-in {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.modal {
  position: absolute;
  height: 100vh;
  width: 100%;
  display: none;
  z-index: 111;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
.closeBtn {
  position: absolute;
  right: -20px;
  top: -20px;
  height: 60px;
  width: 60px;
  font-size: 1.3rem;
  border: none;
  color: #333333;
  border-radius: 50%;
  background-color: white;
  cursor: pointer;
  outline: none;
}
.closeBtn:hover {
  color: #111111;
}
.modalContent {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  width: 70%;
  border-radius: 30px;
  padding: 2rem;
}
iframe {
  border: none;
  height: 70vh;
  width: 80%;
}
