:root { color-scheme: light; }
* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  background: #faf8f1;
  color: #050505;
  font-family: Arial, Helvetica, sans-serif;
}
main {
  width: min(930px, calc(100% - 40px));
  margin: 0 auto;
  padding: 60px 0;
  text-align: center;
}
.globe {
  position: relative;
  width: 155px;
  height: 155px;
  margin: 0 auto 56px;
  border: 4px solid #83a943;
  border-radius: 50%;
  background: rgba(131, 169, 67, .13);
  overflow: hidden;
}
.oval {
  position: absolute;
  inset: -3px 40px;
  border: 4px solid #83a943;
  border-radius: 50%;
}
.equator {
  position: absolute;
  left: 0;
  right: 0;
  height: 4px;
  background: #83a943;
}
.equator.top { top: 48px; }
.equator.bottom { bottom: 48px; }
h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 750;
  letter-spacing: -.7px;
}
p {
  margin: 18px 0 0;
  color: #797979;
  font-size: 23px;
  line-height: 1.45;
  font-weight: 600;
}
h2 {
  margin: 52px 0 50px;
  font-size: 29px;
  line-height: 1.3;
}
button {
  display: block;
  width: 100%;
  border: 0;
  border-radius: 16px;
  padding: 27px 20px;
  color: white;
  background: linear-gradient(100deg, #516d1c, #82a642);
  font-size: 29px;
  font-weight: 750;
  cursor: pointer;
}
button:hover { filter: brightness(1.05); }
button:active { transform: translateY(1px); }
#allowed h1 { color: #516d1c; }
#allowed button { margin-top: 52px; }
@media (max-width: 650px) {
  main { padding-top: 42px; }
  .globe { width: 125px; height: 125px; margin-bottom: 42px; }
  .oval { inset: -3px 32px; }
  .equator.top { top: 39px; }
  .equator.bottom { bottom: 39px; }
  h1 { font-size: 30px; }
  p { font-size: 18px; }
  h2 { margin: 40px 0; font-size: 22px; }
  button { font-size: 23px; padding: 22px; }
  .wide { display: none; }
}
