@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&display=swap");
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

main {
  display: block;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input,
optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset],
[type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[hidden], template {
  display: none;
}

@keyframes fade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes nudge {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  60% {
    transform: translateX(-50%) translateY(6px);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(1turn);
  }
}
html, body {
  color: #fff8de;
  font-family: Inter, sans-serif;
  font-size: 18px;
  line-height: 25px;
  -webkit-font-smoothing: antialiased;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
}

body {
  background-color: #343434;
  margin: 0;
  padding: 0;
  transition: background-color 0.5s ease;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
ul li {
  margin: 0 0 16px;
}
ul li small {
  color: hsla(0, 0%, 100%, 0.6);
  display: block;
  font-style: normal;
  font-size: 13px;
  margin-top: 2px;
}

a, a:visited {
  transition: color 0.3s;
  color: hsla(0, 0%, 100%, 0.6);
  text-decoration: none;
}
a:hover, a:visited:hover {
  color: #fff;
}

h1 {
  display: block;
  font-weight: 500;
  font-size: clamp(52px, 9vw, 120px);
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 32px;
}

h3 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.6);
  margin: 0 0 32px;
}

p {
  margin: 0 0 32px;
}
p:last-child {
  margin-bottom: 0;
}

p.intro {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: -0.02em;
  color: hsla(0, 0%, 100%, 0.6);
  margin: 0;
}

p.copy {
  margin-top: 60px;
  font-size: 11px;
  color: hsla(0, 0%, 100%, 0.3);
}

#logo {
  position: fixed;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: opacity 0.3s;
}
#logo.hidden {
  opacity: 0;
  pointer-events: none;
}
#logo #theme {
  width: 36px;
  opacity: 0.5;
  transition: opacity 0.3s;
}
#logo #theme.click {
  animation: spin 0.5s linear 1;
}
#logo #logo-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: hsla(0, 0%, 100%, 0.6);
  opacity: 0;
  transition: opacity 0.15s;
  white-space: nowrap;
}
#logo:hover #theme {
  opacity: 1;
}
#logo:hover #logo-label {
  opacity: 1;
}

#wrapper {
  animation: fade 0.8s ease both;
}

.panel {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  box-sizing: border-box;
  padding: 60px;
}
.panel__content {
  width: 100%;
  max-width: 680px;
}
@media screen and (max-width: 767px) {
  .panel {
    padding: 40px;
    padding-top: 80px;
    justify-content: flex-start;
  }
}

a.more {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  color: hsla(0, 0%, 100%, 0.6);
  cursor: pointer;
  animation: nudge 2.5s ease-in-out infinite;
}
a.more:hover {
  color: #fff;
}

#s2 ul {
  column-count: 2;
  column-gap: 60px;
}
@media screen and (max-width: 767px) {
  #s2 ul {
    column-count: 1;
  }
}
#s2 small.previously {
  display: block;
  margin-top: 24px;
  font-size: 13px;
  color: hsla(0, 0%, 100%, 0.6);
}

body.canyon {
  background: #a93321;
}
body.canyon a:hover {
  color: #d4412a;
}

body.forest {
  background: #41563f;
}
body.forest a:hover {
  color: #679861;
}

body.granite {
  background: #4c5762;
}
body.granite a:hover {
  color: #6f7e8e;
}

body.limestone {
  background: #6c7e96;
}
body.limestone a:hover {
  color: #92b4d7;
}

body.rivian {
  background: #396787;
}
body.rivian a:hover {
  color: #4f8fbc;
}

/*# sourceMappingURL=style.css.map */
