@font-face {
  font-family: 'Poppins-Regular';
  src: url('../fonts/Poppins-Regular.ttf') format('truetype');
  font-style: normal;
}

@font-face {
  font-family: 'PlayfairDisplay-Regular';
  src: url('../fonts/PlayfairDisplay-Regular.ttf') format('truetype');
  font-style: normal;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: 'Poppins-Regular';
}

/* BACKGROUND */
.page {
  min-height: 100vh;
  width: 100%;
  background-image: url("../images/desk.jpeg");
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5vh 5vw;
}

/* AGE GATE CARD */
.age-gate {
  background: #ffffff;
  width: 100%;
  max-width: 40rem;
  padding: 4vh 4vw;
  text-align: center;
  border-radius: 0.5rem;
}

/* LOGO */
.logo {
  width: 18rem;
  margin-bottom: 1rem;
}

/* QUESTION */
.question {
    color: #565671;
  font-size: 1.5rem;
  line-height: 1.5;
  margin-bottom: 3vh;
}

/* BUTTONS */
.buttons {
  display: flex;
  gap: 2vw;
  margin-bottom: 2vh;
}

.btn {
  flex: 1;
  padding: 1em 0;
  font-size: 1rem;
  text-decoration: none;
  color: #fff;
  border-radius: 0.3rem;
}

.btn.yes {
  background: #7dbb82;
}

.btn.no {
  background: #9a9a9a;
}

/* TERMS */
.terms {
  font-size: 0.9rem;
  line-height: 1.4;
}

.terms a {
  color: #000;
  text-decoration: underline;
}

/* FOOTER */
.footer {
  width: 100%;
  text-align: center;
  padding: 2vh 2vw;
  background: #000;
  font-size: 1.2rem;
}

.footer a {
  color: #fff;
  text-decoration: none;
}

/* MOBILE BACKGROUND */
@media (max-width: 768px) {
  .page {
    background-image: url("../images/desk.jpeg");
     padding: 5vh 0vw;
  }

  .age-gate {
    padding: 2.5vh 4.5vw;
  }

  .buttons {
    gap: 1.5vh;
  }
}
