@charset "UTF-8";

@font-face {
  font-family: "Product Sans";
  src: url("/other/Product Sans Regular.ttf") format("truetype");
}

html {
  scroll-behavior: smooth;
}

input:checked+.slider:after {
  transform: translateX(25px);
}

input:checked+.slider:before {
  transform: translateX(25px);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 16px;
  height: 100%;
  line-height: 1.8;
  margin: 0 auto;
  max-width: 73%;
  min-width: 20em;
  text-shadow: 0 1px 0 black;
}

body header {
  line-height: 1;
  margin-top: 2vh;
  min-height: 6em;
}

body header::after {
  content: "❃";
  position: relative;
  padding: 0 4px;
  left: calc(50% - 0.4em);
  top: -0.5em;
}

body header nav {
  display: flex;
  margin-bottom: 0;
  padding-top: 1em;
}

body nav {
  display: flex;
  margin-bottom: 0;
}

body nav ul {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-content: center;
  flex-wrap: wrap;
  margin-left: 20px;
  gap: 0 1em;
}

body nav li {
  list-style-type: none;
  padding: 0;
  flex-grow: 1;
  margin-bottom: 5px;
  white-space: nowrap;
  line-height: 1.4;
}

body nav a {
  line-height: 1;
}

body .nav {
  display: block;
}

body .nav p {
  margin-top: 1em;
}

body div.nav {
  min-width: 50%;
  padding: 1px;
}

body ul {
  margin-bottom: 0;
  margin-top: 0;
  padding-left: 10px;
}

body ul li {
  padding-left: 10px;
}

body footer {
  text-align: center;
  position: absolute;
  left: 0;
  line-height: 1;
  width: 100vw;
}

body footer p {
  margin: 0;
  padding: 1em 0;
}

body h1 {
  margin: 1em 0;
  padding-bottom: 0.2em;
}

body h2 {
  margin: 0 0 0.3em;
  padding-bottom: 0.1em;
  padding-right: 0.5em;
  display: inline-block;
}

body h1,
body h2,
body h3,
body h4,
body .faux-h1 {
  line-height: 1;
}

body h1 a,
body h2 a,
body h3 a,
body h4 a,
body .faux-h1 a {
  line-height: 1;
}

body a {
  text-decoration: none;
}

body a:hover,
body a:focus {
  border-bottom: 0;
}

body .faux-h1 {
  color: #989898;
  font-size: 2em;
  font-weight: bold;
}

body hr {
  border: none;
  margin: 0;
  border-top: 3px double #dcdcdc;
  overflow: visible;
  text-align: center;
  height: 10px;
}

body hr::after {
  content: "❃";
  background: #222831;
  color: #dcdcdc;
  padding: 0 4px;
  position: relative;
  top: -1em;
}

body ::selection {
  background-color: rgba(100, 148, 237, 0.534);
}

body .color-switch {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-block;
  height: 2em;
  width: 3.5em;
}

body .color-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

body .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body .slider:before {
  position: absolute;
  content: "️";
  height: 1.5rem;
  width: 1.5rem;
  left: 3px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

body .slider.round {
  border-radius: 34px;
}

body .slider.round:before {
  border-radius: 50%;
}

body main {
  margin: 2em 0;
  position: relative;
}

body main .download-link {
  font-weight: normal;
  font-size: 0.8em;
  border: none;
}

body main tr,
body main p {
  margin-bottom: 0;
  margin-top: 0;
}

body .heading {
  width: 65%;
  border-right: solid;
  padding-right: 1em;
  padding-left: 1em;
}

body .heading h1 {
  font-size: 7em;
  border: none;
  margin: 0 auto 5px;
  position: relative;
  z-index: 1;
}

body .heading p {
  margin-top: 0.5em;
  line-height: normal;
}

body .container {
  display: flex;
  border: solid;
  padding: 20px;
  aspect-ratio: 54/25;
  min-height: 25em;
  align-items: center;
  position: relative;
}

body .container p,
body .container li {
  font-size: 3em;
}

body #mobile-home-img {
  position: absolute;
  left: 42%;
  bottom: 45%;
  z-index: 0;
}

body #mobile-home-img img {
  width: 20vw;
  max-width: 360px;
  height: auto;
}

@media screen and (max-width: 1025px) {
  body nav {
    margin: 0;
    width: 90%;
    padding: 20px 0;
    flex-direction: column;
  }

  body nav ul li {
    text-align: center;
  }

  body .container {
    justify-content: center;
    flex-direction: column;
    aspect-ratio: auto;
    min-width: 0;
    width: 90vw;
    flex-basis: 400% !important;
    padding: 10px;
    margin: 0;
  }

  body .container p,
  body .container li {
    font-size: 1rem;
  }

  body .container nav ul {
    margin: 0 !important;
    display: flex !important;
    justify-content: space-between !important;
    gap: 0;
  }

  body .heading {
    display: flex;
    flex-direction: column;
    border: none;
    width: auto;
    text-align: center;
  }

  body .heading h1 {
    font-size: 4rem;
  }

  body nav::before {
    content: "";
    display: block;
    border-bottom: solid;
    margin-bottom: 20px;
  }

  body section#front li {
    display: inline-block;
    margin: 0 !important;
  }

  body #mobile-home-img {
    display: inline-block;
    position: static;
    flex-grow: 1 !important;
  }

  body #mobile-home-img img {
    width: 300px;
    height: 300px;
  }
}