:root {
    color-scheme: light;
  }

  h1, h2, h3, h4, h5, h6 {
    font-family: Rubik, Inter, system-ui, sans-serif;
  }
  body {
    font-family: Nunito, Inter, system-ui, sans-serif;
  }


  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
  }

  .popup {
    background: rgb(15, 15, 15);
    color: var(--text-color);
    text-align: center;
    padding: 3rem;
    border-radius: 16px;
    width: 500px;
    max-width: 90%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.btn-yes {
    background-color: #00a651;
    color: white;
    border: none;
    width: 80px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 18px;

}

.btn-no {
    background-color: #ff0000;
    color: white;
    border: none;
    width: 80px;
    font-weight: bold;
    border-radius: 4px;
    font-size: 18px;
}

.popup h1{
  height: 60px;
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.content {
  max-width: 600px;
  padding: 20px;
}

.icon {
  font-size: 50px;
  font-weight: bold;
  border: 3px solid white;
  border-radius: 50%;
  display: inline-block;
  padding: 20px 30px;
  margin-bottom: 20px;
}

.message {
  font-size: 22px;
  font-weight: bold;
}
.age-restriction-page {
  width: 100%;
  height: 100vh;
  background-color: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}