* {
  margin                 : 0;
  padding                : 0;
  box-sizing             : border-box;
  -webkit-font-smoothing : antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  height: 100%;
}

body {
  background-image: url(./images/background-img.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #F1EEDF;
  font-family: 'Questrial', sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100dvh;
}
p {
  font-family: 'Questrial', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 20px;
}
p:last-child {
  margin-bottom: 0;
}
header {
  display: flex;
  justify-content: space-between;
  text-align: center;
  align-items: end;
  padding: 40px 34px;
}
main {
  text-align: center;
}
footer {
  padding-bottom: 63px;
}
.footer-center-text {
  display: flex;
  flex-direction: column;
  gap: 36px;
  align-items: center;
}
.footer-center-text svg {
  width: 74px;
  height: auto;
}
p.logo-text {
  font-family: 'Pinyon Script', sans-serif;
  font-weight: 400;
  font-size: 40px;
  line-height: 16px;
  padding-bottom: 35px;
}
.logo {
  cursor: pointer;
}
.coming-soon {
  padding-bottom: 35px;
}
.popup-container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%; 
  height: 100%;
  z-index: 1000;
  opacity: 0;
  transition: opacity 0.5s ease;
  align-items: center;
  justify-content: center;
  padding: 30px;
}
.popup {
  background: #F1EEDF;
  padding: 136px 115px 112px;
  max-width: 700px;
  text-align: center;
  position: relative;
  color: #B38A4A;
  text-align: left;
  max-height: 90vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
}
.popup-container.show {
  display: flex;
  opacity: 1;
}
.popup h2{
  padding-bottom: 23px;
  font-family: "psfournier-std", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
}
.popup .close-btn {
  position: absolute;
  top: 22px;
  right: 20px;
  cursor: pointer;
  background: none;
  border: none;
  color: #B38A4A;
  font-family: Questrial, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 12px;
}
svg.popup-logo {
  position: absolute;
  top: 22px;
  left: 20px;
  max-width: 100%;
  width: 65px;
  height: auto;
}
@media only screen and (max-width: 767px) {
  body {
    background-image: url(./images/background-img-mobile.png);
    background-position: top;
  }
  header{
    padding: 25px 20px;
  }
  footer {
    padding-bottom: 54px;
  }
  .logo {
    padding: 10px 0;
  }
  .popup {
    background: #F1EEDF;
    padding: 37px;
    /* max-width: 300px; */
  }
  .popup h2{
    padding-top: 102px;
    font-size: 16px;
    line-height: 16px;
    padding-bottom: 30px;
  }
  p {
    font-size: 12px;
    line-height: 16px;
  }
  p.logo-text {
    font-size: 28px;
    padding-bottom: 30px;
  }
  .coming-soon {
    padding-bottom: 30px;
  }
  
}
