@import url("https://fonts.googleapis.com/css2?family=National+Park:wght@200..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Share+Tech+Mono&display=swap");
* {
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-size: 20px;
  font-family: "National Park", Helvetica, sans-serif;
  color: #000000;
}

body {
  width: 100%;
  height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-behavior: smooth;
  background: linear-gradient(#c7b8ff, #ebe6fd);
  background-attachment: fixed;
}

.container {
  height: 100%;
  max-height: 100%;
}
@media (max-width: 1200px) {
  .container {
    padding: 120px 0 30px;
  }
}

header {
  position: absolute;
  left: 1em;
  top: 1em;
  z-index: 1;
  width: 15%;
  min-width: 200px;
}
header img {
  width: 100%;
  height: 100%;
}

main {
  max-width: 800px;
  padding: 30px;
  min-height: 100%;
  margin: 0 auto;
}

footer {
  position: absolute;
  right: 1em;
  bottom: 1em;
}

a, a:active, a:visited {
  color: #444444;
}

li {
  margin: 3px 0;
}
li > :first-child {
  margin-top: 0;
}
li > :last-child {
  margin-bottom: 0;
}

code {
  font-family: "Share Tech Mono", Courier, monospace;
}

hr {
  border: none;
  border-bottom: 2px dashed #444444;
}

iframe {
  width: 100%;
  aspect-ratio: 16/9;
}

.card, footer {
  display: block;
  margin: 1em 0;
  padding: 1em;
  border: 2px solid #444444;
  border-radius: 1em;
  background: rgba(255, 255, 255, 0.5647058824);
}
.card > :first-child, footer > :first-child {
  margin-top: 0;
}
.card > :last-child, footer > :last-child {
  margin-bottom: 0;
}

.button {
  text-decoration: none;
  color: #000000 !important;
  transition: background 0.1s, box-shadow 0.1s;
}
.button:hover, .button:focus, .button:target {
  background: white;
  box-shadow: 0.25em 0.25em rgba(0, 0, 0, 0.1882352941);
}

@media screen and (min-width: 1200px) {
  .w25 {
    max-width: 25%;
  }
  .w50 {
    max-width: 50%;
  }
  .right.float {
    float: right;
    margin: 0 0 0 1em;
  }
  .right.popout {
    margin-right: -10em;
  }
  .left.float {
    float: left;
    margin: 0 1em 0 0;
  }
  .left.popout {
    margin-left: -10em;
  }
  .card::after, footer::after {
    display: block;
    content: "";
    clear: both;
  }
}
.imageblock img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.text-h2 {
  font-size: 30px;
  font-weight: bold;
}

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