@charset "UTF-8";
@font-face {
  font-family: "Google Sans";
  src: url("/fonts/GoogleSans-Regular.ttf");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: "Crystal Symphony";
  src: url("/fonts/CrystalSymphony.ttf");
}
html, body {
  height: 100dvh;
  width: 100dvw;
  margin: 0;
  padding: 0;
  background-color: #3b3b3b;
  color: aliceblue;
}

body {
  -webkit-tap-highlight-color: transparent;
  -moz-tap-highlight-color: transparent;
  -ms-tap-highlight-color: transparent;
  -o-tap-highlight-color: transparent;
  tap-highlight-color: transparent;
  font-family: "Google Sans", sans-serif;
  padding: 20px;
}
body a {
  color: aliceblue;
  font-size: var(--p);
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

header {
  height: 45vh;
  background-image: url(/images/banner.jpg);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 20px;
  box-shadow: 0 0 20px rgb(255, 235, 171);
}

.main {
  padding: 20px 0;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-bottom: 100px;
}
.main * {
  margin: 0;
}
.main .location {
  width: -moz-fit-content;
  width: fit-content;
  background-color: #696969;
  border-radius: 20px;
  padding: 10px;
  opacity: 0.75;
  transition: 0.25s;
}
.main .location::before {
  content: "📌";
}
.main .location:active {
  opacity: 1;
}
.main .about {
  text-align: center;
}

.payment-button {
  cursor: pointer;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  left: 50%;
  transform: translateX(-50%);
  bottom: 20px;
  padding: 10px;
  transition: 0.25s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
  -webkit-backdrop-filter: blur(10px) brightness(100%);
  -moz-backdrop-filter: blur(10px) brightness(100%);
  -o-backdrop-filter: blur(10px) brightness(100%);
  backdrop-filter: blur(10px) brightness(100%);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.37);
}
.payment-button * {
  -webkit-text-wrap: nowrap;
  -moz-text-wrap: nowrap;
  -ms-text-wrap: nowrap;
  -o-text-wrap: nowrap;
  text-wrap: nowrap;
  margin: 0;
}
.payment-button:active {
  opacity: 1;
}

.payment-popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  -webkit-backdrop-filter: blur(5px) brightness(50%);
  -moz-backdrop-filter: blur(5px) brightness(50%);
  -o-backdrop-filter: blur(5px) brightness(50%);
  backdrop-filter: blur(5px) brightness(50%);
  z-index: 999;
}
.payment-popup.show {
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.payment-popup .payment-popup-content {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.payment-popup .payment-methods {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.payment-popup .payment-methods a {
  cursor: pointer;
}
.payment-popup .payment-methods a img {
  border-radius: 20px;
  width: 70px;
  height: 70px;
}

.smartphone-warning {
  display: none;
}

.button {
  width: 2rem;
  height: 2rem;
  border: none;
  color: aliceblue;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background-color: #696969;
  padding: 10px;
}

@media screen and (min-width: 600px) {
  header, .main, .payment-button {
    display: none;
  }
  body {
    padding: 0;
  }
  .smartphone-warning {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    width: 100dvw;
    text-align: center;
  }
}/*# sourceMappingURL=styles.css.map */