*,
::after,
::before {
  line-height: 1.4em;
  box-sizing: border-box;
}

.none {
  display: none;
}

body,
html {
  color: rgb(86, 86, 86);
  margin: 0;
  padding: 0;
}

html {
  overflow: hidden;
  height: 100vh;
  height: 100svh;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: normal;
}

body {
  overflow: auto;
  height: 100vh;
  height: 100svh;
  min-height: 100svh;
}

.address {
  color: rgb(82, 138, 251);
}

span,
div a,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre {
  font-size: 100%;
  font-style: normal;
  font-weight: normal;
  text-decoration: none;
  word-wrap: break-word;
  margin: 0;
}

h1 {
  margin-top: 1rem;
  font-size: 1.5rem;
}

h2 {
  margin-top: 1rem;
  font-size: 1.35rem;
}

h3 {
  margin-top: 1rem;
  font-size: 1.2rem;
}

p {
  margin-top: 0.85rem;
  font-size: 0.85rem;
}

.main-nav {
  z-index: 10;
  display: block;
  position: fixed;
  top: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
  border-bottom: solid 1px rgb(126, 156, 255);
}

.nav-container {
  max-width: 50rem;
  width: calc(100% - 2rem);
  margin: 0 auto;
}

.nav-items {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  list-style: none;
  list-style-position: outside;
  padding: 0;
}

.nav-items li {
  padding: 0.25rem;
  list-style-position: outside;
}

.container {
  max-width: 50rem;
  margin: 4.5rem auto 0 auto;
  padding: 0 0 2rem 0;
}

@media (max-width:55rem) {
  .container {
    width: calc(100% - 2rem);
  }
}


.container::before,
.container::after {
  content: "";
  display: block;
  width: 1px;
  height: 1px;
}

.w-full {
  width: 100%;
}

.radius-xl {
  border-radius: 0.5rem;
}

.mt-xl {
  margin-top: 1.5rem;
}

.mt-lg {
  margin-top: 0.5rem;
}

.confirmation-module {
  padding: 0.85rem;
  max-width: 25rem;
  margin: 2rem auto 1.5rem auto;
  border: solid 1px rgb(126, 156, 255);
  border-radius: 0.25rem;
}

@media (max-width:30rem) {
  .confirmation-module {
    width: calc(100% - 2rem);
  }
}

.confirmation-module .flex {
  display: grid;
  gap: 0.5rem;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  margin-top: 1rem;
}

.age-click {
  display: block;
  width: 100%;
  padding: 0.5rem 0;
  text-align: center;
  border-radius: 0.25rem;
  font-size: 0.85rem;
}

.age-yes {
  color: rgb(240, 248, 255);
  background-color: rgb(126, 156, 255);
}

.age-not {
  color: rgb(106, 141, 255);
  background-color: rgb(192, 226, 255);
}