* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  background: var(--bg);
  color: var(--muted);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.85;
  overflow-x: hidden;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}
input,
textarea,
select {
  font-family: inherit;
  font-weight: 300;
  color: var(--fg);
  background: transparent;
  border: none;
}
input::placeholder,
textarea::placeholder {
  color: rgba(218, 218, 218, .45);
  font-weight: 300;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[role="radio"]:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
#rain {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.waterline {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(60% 46px at 50% 100%, rgba(232, 184, 109, .10), transparent 70%),
    linear-gradient(to top, rgba(232, 184, 109, .05), transparent 65%);
}
.waterline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 8%;
  right: 8%;
  height: 1px;
  background: rgba(255, 255, 255, .06);
}
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
