@font-face {
  font-family: Ionic;
  src: url("../fonts/rationic-21.06-VF.ttf");
  font-weight: normal;
}
* {
  box-sizing: border-box;
}

html {
  font-family: "Acumin-pro";
  font-size: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  margin: 0;
}

p {
  max-width: 60ch;
}

.button {
  background-color: #0d0d0d;
  color: white;
  padding: 0.2rem 2rem;
  border-radius: 0.8rem;
  cursor: pointer;
}
@media (max-width: 599px) {
  .button {
    transform: scale(0.7);
  }
}

.site-header {
  position: fixed;
  z-index: 501;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
}
.site-header h1 {
  font-size: 1rem;
}
.site-header .button {
  align-self: flex-end;
}

section {
  min-height: 80vh;
}

@media (min-width: 900px) {
  .grid {
    display: grid;
    padding: 1rem;
    gap: 1rem;
  }
}
.grid.col-1 {
  grid-template-columns: 1fr;
}
.grid.col-2 {
  grid-template-columns: 1fr 1fr;
}
.grid.col-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.span-2 {
  grid-column: span 2;
}

.flex {
  display: flex;
}
.flex.align-c {
  align-items: center;
}

figure {
  display: flex;
  flex-direction: column;
  max-height: 80vh;
  max-width: 2000px;
  align-content: center;
  justify-content: center;
  gap: 2rem;
  padding: 1rem;
}
figure.side-side {
  flex-direction: column;
}
@media (min-width: 900px) {
  figure.side-side {
    flex-direction: row;
  }
}
figure.side-side figcaption {
  align-self: start;
}
@media (min-width: 900px) {
  figure.side-side figcaption {
    align-self: flex-end;
  }
}
figure img {
  max-height: 60vh;
}
figure img.normal {
  width: 100%;
}
figure figcaption {
  font-size: 0.8rem;
  min-width: 30ch;
  max-width: 70ch;
}
figure figcaption .red {
  margin-right: 1rem;
}

.holder {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.holder h1 {
  margin: 0;
}
.holder .ionic {
  font-family: "Ionic";
  font-variation-settings: "BRKT" 0;
  font-variation-settings: "SRFS" 1000;
}
@media (max-width: 599px) {
  .holder .ionic {
    font-size: calc(20px + 8vmax);
    padding-top: 8rem;
  }
}
@media (min-width: 600px) {
  .holder .ionic {
    font-size: calc(100px + 8vmax);
    padding-top: 10rem;
  }
}
@media (min-width: 1200px) {
  .holder .ionic {
    font-size: calc(100px + 8vmax);
  }
}

input[type=range] {
  -webkit-appearance: none;
  margin: 18px 0;
  width: 100%;
}

input[type=range]:focus {
  outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
  width: 100%;
  height: 1px;
  cursor: pointer;
  background: black;
}

input[type=range]::-webkit-slider-thumb {
  height: 16px;
  width: 16px;
  border-radius: 50%;
  background: black;
  border: 1px solid black;
  cursor: pointer;
  -webkit-appearance: none;
  margin-top: -7px;
}

input[type=range]:focus::-webkit-slider-runnable-track {
  background: black;
}

input[type=range]::-moz-range-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  background: black;
  border-radius: 1.3px;
  border: 0.2px solid #010101;
}

input[type=range]::-moz-range-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type=range]::-ms-track {
  width: 100%;
  height: 8.4px;
  cursor: pointer;
  background: transparent;
  border-color: transparent;
  border-width: 16px 0;
  color: transparent;
}

input[type=range]::-ms-fill-lower {
  background: black;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type=range]::-ms-fill-upper {
  background: black;
  border: 0.2px solid #010101;
  border-radius: 2.6px;
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
}

input[type=range]::-ms-thumb {
  box-shadow: 1px 1px 1px #000000, 0px 0px 1px #0d0d0d;
  border: 1px solid #000000;
  height: 36px;
  width: 16px;
  border-radius: 3px;
  background: #ffffff;
  cursor: pointer;
}

input[type=range]:focus::-ms-fill-lower {
  background: black;
}

input[type=range]:focus::-ms-fill-upper {
  background: black;
}

.controllers {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

.controller {
  padding: 1rem;
  display: flex;
  gap: 1rem;
}
.controller p,
.controller div {
  flex: 1;
  margin: 0;
  min-width: 80px;
}
.controller div {
  padding: 0.05em 1em 0 1em;
  border-radius: 20px;
  text-align: center;
  background-color: black;
  color: white;
}
.controller input {
  flex: 10;
}

.about {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  background-color: whitesmoke;
  z-index: 500;
  transform: translateY(100vh);
  transition: cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow-y: scroll;
  overflow-x: hidden;
  padding: 4rem 1rem;
}
.about p {
  margin: 0;
}
.about p + p {
  text-indent: 2rem;
}
.about.inview {
  transform: translateY(0);
}

.red {
  color: #ef5350;
}/*# sourceMappingURL=style.css.map */