@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&family=Roboto+Condensed&display=swap');
:root {
  --color-primary: #0b08a0;
  --color-primary-alt: #1714d1;
  --color-secondary: #29c2ff;
  --color-secondary-alt: #29c2ff26;
  --color-background: #ffffff;
  --color-grey: #f5f5f5;
  --color-text: black;
  --color-light: #fff;
  --color-anchor: #0065fc;
  --font-family: "Inter", sans-serif;
  --font-weight-strong: bold;
  --font-size-h1: 6rem;
  --font-size-h2: 1.5rem;
  --font-size-h3: 1.25rem;
  --font-size-h4: 1.20rem;
  --font-size-text: 1.15rem;
  --border-radius: 3px;
}

/*
 * [Modified] Modern CSS Reset
 * @link https://github.com/hankchizljaw/modern-css-reset
*/
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  font-size: 100%;
  line-height: 1.6;
  text-rendering: optimizeSpeed;
  overflow-x: hidden;
}

/* Make images easier to work with */
img {
  display: block;
  max-width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  *,
  *::after,
  *::before {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

h2,
h3,
h4 {
  font-weight: var(--font-weight-strong);
  line-height: 1;
  margin-bottom: 0.65em;
}

h1 {
  font-size: var(--font-size-h1);
  font-size: clamp(4rem, 8.5vw, var(--font-size-h1));
  font-weight: bold;
  line-height: 1.1;
}

h2 {
  font-size: var(--font-size-h2);
}

#main h2 {
  color: var(--color-text);
  border-bottom: solid;
  border-bottom-color: var(--color-primary);
  border-bottom-width: 4px;
  padding-bottom: 0.2em;
}

h3 {
  font-size: var(--font-size-h3);
}

h4 {
  font-size: var(--font-size-h4);
}

p,
li {
  font-size: var(--font-size-text);
}

p {
  margin: 0 0 1.25rem;
}

article .container > ul:not(.features) > li + li,
article .container > ol > li + li {
  margin-top: 1rem;
}
article .container * + h2 {
  margin-top: 4rem;
}


strong {
  font-weight: var(--font-weight-strong);
  color: var(--color-primary)
}

a {
  color: var(--color-anchor);
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

blockquote {
  position: relative;
  display: grid;
  grid-template-areas: "blockquote";
  place-items: center;
  padding: 0;
  margin: 3rem 0;
  margin-top: 0.25rem;
  margin-bottom: 1rem;
}
blockquote > * {
  grid-area: blockquote;
}
blockquote p {
  position: relative;
  font-size: var(--font-size-text);
  margin-bottom: 0;
  padding: 0.5rem;
  padding-left: 1.25em;
}
blockquote p strong {
  font-size: var(--font-size-text);
  font-weight: bold;
  color: var(--color-primary)
}
blockquote::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-left: 4px solid var(--color-primary);
  content: "";
  padding: 2rem;
}

#guidelines p:nth-of-type(1),
#contribute p:nth-of-type(1) {
  font-size: var(--font-size-text);
}

body {
  background-color: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-family);
}

main {
  padding-bottom: 5vh;
}
main:focus {
  outline: none;
}


article section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2vh;
}

article .container,
.page-footer .container,
#styles .container {
  width: 100%;
  max-width: 115ch;
  margin-right: auto;
  margin-left: auto;
}

article,
#styles {
  padding: 1rem;
  padding-bottom: 0;
}

.page-footer ul,
.features {
  display: grid;
  margin: 0 0 2rem;
  padding: 0;
  grid-gap: 3em;
  list-style: none;
  margin-bottom: 3rem;
}

header {
  display: grid;
  min-height: 40vh;
  place-items: center;
  color: var(--color-primary);
  text-align: center;
}
header h1 {
  display: inline-grid;
  padding: 0.25em;
  place-content: center;
}
header h2 {
  font-size: var(--font-size-h3);
  color: var(--color-text);
}
header p {
  color: var(--color-text);
  margin-bottom: 2.5em;
}

.link-github svg {
  transition: transform 1s ease-in;
  color: var(--color-primary);
}
.link-github:hover svg {
  transform: rotate(720deg);
}
nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-left: 0;
}
nav ul a {
  display: inline-grid;
  padding: 0.5rem;
  color: var(--color-text);
  font-size: 1.25rem;
  text-decoration: none;
}
nav ul a:hover {
  text-decoration-color: var(--color-primary);
  text-decoration-thickness: 4px;
  text-underline-offset: 0.3em;
  color: var(--color-text);
}
nav ul li {
  margin: 0.25rem;
}

#about section:nth-child(2) {
  position: relative;
}
#about section:nth-child(2) p:nth-of-type(2) {
  color: var(--color-text);
  font-size: var(--font-size-h3);
  font-weight: var(--font-weight-strong);
  text-align: center;
  margin: 0;
}
#about section:nth-child(2) ul {
  display: flex;
  flex-wrap: wrap;
  margin: 1rem 0 2rem;
  padding: 0;
  list-style: none;
}
#about section:nth-child(2) ul li {
  margin: 0.25em;
  padding: 0.25em 0.5em;
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius);
}

#about section:nth-child(2)::before {
  position: absolute;
  top: 60%;
  left: 50%;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
  transform: translate(-50%, -50%);
  transition: 300ms transform ease-in;
  opacity: 0.8;
  content: "";
  z-index: -1;
}
@media (max-width: 35rem) {
  #about section:nth-child(2)::before {
    transform: scale(2) translate(-25%, -25%);
  }
}

#guidelines .container > a {
  align-self: center;
}

#contribute section {
  background-color: var(--color-background);
}
#contribute section:nth-child(2) {
  padding-top: 0;
}

#files h3 {
 display: none;
}

#files .container {
  display: flex;
  gap: 1em;
  background-color: var(--color-background);
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}


.features {
  position: relative;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(25ch, 1fr));
  /*! 
    * SVGs from Hero Patterns
    * @link http://www.heropatterns.com/
    */
}
.features li {
  display: grid;
  position: relative;
  place-content: center;
  min-height: 12rem;
  padding: 1rem;
  color: var(--color-text);
  text-align: center;
}
.features li > span {
  display: grid;
  place-content: center;
  padding: 0.5em;
  grid-gap: 0.5rem;
  line-height: 1.1;
  background-color: var(--color-light);
  border: 1px solid black;
}
.features li > span a {
  font-size: 1.3rem;
  font-weight: 600;
}

.features li > span span:nth-child(2) {
  position: relative;
}

#styles {
  margin: 5vh 0 20vh;
  text-align: center;
}
#styles h2 {
  color: var(--color-text);
}

#styles .features li,
.features.patterned li {
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius);
  background-color: var(--color-secondary-alt);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='36' height='72' viewBox='0 0 36 72'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.4'%3E%3Cpath d='M2 6h12L8 18 2 6zm18 36h12l-6 12-6-12z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media (min-width: 515px) and (max-width: 765px) {
  #styles .features li:nth-last-child(1):nth-child(odd),
  .features.patterned li:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
  }
}
#styles .features li:nth-child(2),
.features.patterned li:nth-child(2) {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='24' viewBox='0 0 88 24'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='autumn' fill='%23fff' fill-opacity='0.4'%3E%3Cpath d='M10 0l30 15 2 1V2.18A10 10 0 0 0 41.76 0H39.7a8 8 0 0 1 .3 2.18v10.58L14.47 0H10zm31.76 24a10 10 0 0 0-5.29-6.76L4 1 2 0v13.82a10 10 0 0 0 5.53 8.94L10 24h4.47l-6.05-3.02A8 8 0 0 1 4 13.82V3.24l31.58 15.78A8 8 0 0 1 39.7 24h2.06zM78 24l2.47-1.24A10 10 0 0 0 86 13.82V0l-2 1-32.47 16.24A10 10 0 0 0 46.24 24h2.06a8 8 0 0 1 4.12-4.98L84 3.24v10.58a8 8 0 0 1-4.42 7.16L73.53 24H78zm0-24L48 15l-2 1V2.18A10 10 0 0 1 46.24 0h2.06a8 8 0 0 0-.3 2.18v10.58L73.53 0H78z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
#styles .features li:nth-child(3),
.features.patterned li:nth-child(3) {
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23fff' fill-opacity='0.4'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10zm10 8c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8zm40 40c4.418 0 8-3.582 8-8s-3.582-8-8-8-8 3.582-8 8 3.582 8 8 8z' /%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

@media (min-width: 515px) and (max-width: 765px) {
  #styles .features li:nth-last-child(1):nth-child(odd),
  .features.patterned li:nth-last-child(1):nth-child(odd) {
    grid-column: span 2;
  }
}

#styles .features::after,
.features.patterned::after {
  position: absolute;
  bottom: -4.5em;
  width: 10ch;
  padding-top: 3em;
  transform: rotate(-15deg);
  transform-origin: bottom right;
  background-size: 90%;
  color: var(--color-primary-alt);
}

.profile {
  width: 95vw;
  max-width: 80ch;
  margin: 1rem auto 10vh;
  padding: 1.25rem;
  z-index: 1;
}
.profile h4 {
  margin: 0;
  color: var(--color-primary);
  text-align: center;
}
.profile .container {
  display: grid;
  justify-items: center;
  grid-gap: 1rem;
  border-radius: var(--border-radius);
  background-color: var(--color-light);
  border: 2px solid var(--color-secondary);
  padding: 0.75em;
}
.profile .container > a {
  min-height: 2em;
  border: 2px solid var(--color-secondary);
  border-radius: var(--border-radius);
  color: var(--color-text);
}
.profile  .container ul li span > a {
  color: var(--color-anchor)
}
.profile ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.profile ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0.45em;
}
.profile ul li span:nth-child(1) {
  width: auto;
  margin-right: 0.25em;
  font-weight: var(--font-weight-strong);
}
.profile ul li span:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  word-break: break-word;
}

@media (min-width: 180ch) {
  .profile {
    position: fixed;
    right: 2vmin;
    bottom: 2vmin;
    max-width: 30ch;
    margin-bottom: 0;
    border-radius: var(--border-radius);
  }

  .profile .container {
    background-color: var(--color-light);
  }
  .profile ul {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .profile ul li {
    padding: 0;
    font-size: 1em;
  }
  .profile ul li span:nth-child(1) {
    width: 8ch;
    margin-right: 0;
  }
}


.page-footer {
  position: relative;
  color: var(--color-text);
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: var(--color-grey);
}

.page-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  list-style-type: none;
  justify-content: center;
  align-items: center;
}

.page-footer li {
  margin-bottom: 1em;
}
.page-footer ul a {
  padding: 0.5em 0.75em 0.5em 0.75em
}
.page-footer p:first-child {
  font-weight: var(--font-weight-strong);
  letter-spacing: 0.03em;
  text-align: center;
}
.page-footer p a {
  color: var(--color-anchor);
}

.page-footer .container > :last-child {
  margin-bottom: 0;
}

.skip-link {
  position: absolute;
  top: auto;
  left: -10000px;
  width: 1px;
  height: 1px;
  font-size: 1.125rem;
  overflow: hidden;
}
.skip-link:focus {
  position: fixed;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  padding: 0.5em;
}

[class^=link] {
  border: 2px solid var(--color-secondary);
  color: var(--color-text);
  transition: 0.3s;
  border-radius: var(--border-radius);
  font-weight: 500;
}

[class^=link],
.profile .container > a {
  padding: 0.75em 2em 0.75em 2em;
}
[class^=link]:hover,
.profile .container > a:hover {
  text-decoration: none;
  background-color: var(--color-secondary-alt);
}
[class^=link]:active,
.profile .container > a:active {
  text-decoration: none;
  background-color: var(--color-secondary);
}

.link-allstyles {
  font-size: var(--font-size-h4);
}


.link-github svg {
  width: 1em;
  height: 1em;
  margin-right: 0.25em;
  fill: currentColor;
}
