@import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:ital,wght@0,300;0,400;1,300;1,400&display=swap");
@font-face {
  font-family: "Pantasia";
  src: url("fonts/Pantasia-Regular.woff2") format("woff2"), url("fonts/Pantasia-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
:root {
  --serif: "Pantasia", serif;
  --mono: "IBM Plex Mono", serif;
  --a-1: #d2eafd;
  --a-2: #CDD1C9;
  --a-3: #EAECE7;
  --a-4: #A0A2A7;
  --p-1: #3b72ff;
  --p-2: #F46600;
  --p-3: #F9AED9;
  --p-4: #70A2FF;
  --p-5: #d3ebfd;
  --p-6: #BAB50E;
  --text: #3B3D3F;
  --bg: var(--a-3);
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Pantasia", serif;
  overflow-y: scroll;
  margin: 0;
  font-size: 0.95rem;
  letter-spacing: 0.15px;
  transition: background 0.25s ease-in-out;
  scroll-margin-top: 10vh;
  scroll-behavior: smooth;
}

main, section {
  scroll-margin-top: 10vh;
  scroll-behavior: smooth;
}

body.page {
  margin: 10vh 1rem;
}

nav {
  position: fixed;
  z-index: 99;
  backdrop-filter: blur(10px);
  margin: 0.5rem;
  width: calc(100% - 1.5rem);
}
nav a {
  transition: letter-spacing 0.25s ease-in-out;
}
nav a:hover {
  letter-spacing: 5px;
}
nav [surface=site] {
  background: var(--p-5);
}
nav [surface=browser] {
  background: var(--p-4);
}
nav [surface=desktop] {
  background: var(--p-1);
}

nav .exercises {
  display: flex;
}
nav .exercises a {
  padding: 0.5rem;
  margin: 0 1rem;
}

nav.top {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem;
  width: auto;
  margin: 0.5rem auto;
  border-radius: 40px;
}
nav.top .title {
  font-size: 1.5rem;
  border: 0;
}
nav.top .title:hover {
  letter-spacing: 4px;
}

nav.bot {
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
nav.bot div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
nav.bot a[surface] {
  flex-grow: 1;
  width: 33%;
  padding: 0.5rem;
  text-align: center;
  border: 0;
  border-radius: 40px;
}
nav.bot a[aria-current=page] {
  box-shadow: 0 0 16px var(--bg), 0 0 16px var(--bg), 0 0 16px var(--bg), 0 0 16px var(--bg);
}

section.stretch, div.stretch {
  width: 100vw;
  max-width: none;
  margin: 0;
  padding: 0;
}
section.stretch .wrapper, div.stretch .wrapper {
  margin: 0;
  width: 100%;
}
section.stretch .box-3, div.stretch .box-3 {
  padding: 2rem;
}

/* type + elements */
h1, h2 {
  font-weight: normal;
  text-align: center;
  margin: 0.5rem auto;
}

h1 {
  font-size: 2.5rem;
  padding: 1.5rem;
}

h2 {
  text-align: center;
  margin: 1rem auto;
  font-size: 1.75rem;
}

.subtitle {
  margin-top: -2.5rem;
  display: block;
}

.boxes > h2 {
  padding: 2rem;
  font-size: 2.5rem;
}

h3 {
  text-align: center;
}

hr {
  border: 0;
  padding: 0.5rem 0;
}

p {
  font-family: var(--mono);
  letter-spacing: -0.1px;
  font-size: 0.85rem;
  line-height: 1.4;
  max-width: 640px;
  margin: 0.5rem auto 1rem;
}

.serif p {
  font-family: var(--serif);
  line-height: 1.4;
}

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px dotted #4e4d4c;
}

img, video {
  max-width: 100%;
  object-fit: contain;
}

textarea {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-family: var(--mono);
  height: 320px;
  overflow: hidden;
  border: 1px dotted #4e4d4c;
  border-spacing: 12px;
  border-radius: 16px;
}

input[type=text] {
  display: inline-block;
  margin: 0.25rem;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-family: var(--mono);
  border: 1px dotted #4e4d4c;
  width: 100%;
  border-radius: 32px;
}

iframe {
  width: 100%;
  height: 100%;
}

blockquote {
  padding: 2rem;
  background: var(--p-5);
  font-family: "Pantasia", serif;
  letter-spacing: -0.5px;
  font-size: 1.25rem;
}
blockquote cite {
  font-family: "IBM Plex Mono", serif;
  font-style: normal;
  display: block;
  font-size: 1rem;
  letter-spacing: 1.2px;
  padding: 0.75rem 1.5rem;
  margin-bottom: 0;
}

ul, ol {
  display: flex;
  justify-content: center;
  margin: 0;
}
ul li, ol li {
  border: 1px dotted #4e4d4c;
  border-radius: 32px;
  padding: 1.5rem;
  list-style: none;
  max-width: 320px;
  margin: 0;
}

ol li {
  list-style-type: decimal;
  text-align: left;
}

ul.vertical, ol.vertical {
  flex-direction: column;
  margin: 0 auto;
}
ul.vertical li, ol.vertical li {
  margin: 0 auto;
  width: 600px;
  max-width: 80%;
}

.row {
  display: flex;
  justify-content: space-between;
}
.row p {
  vertical-align: top;
  text-align: left;
  padding: 2rem;
  max-width: 50%;
}
@media (max-width: 600px) {
  .row {
    width: 100%;
    flex-direction: column;
  }
  .row p, .row div {
    max-width: none;
    width: 100%;
  }
}

ul.half {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}
ul.half li {
  border-color: #fff;
  width: 50%;
  max-width: 50%;
}
@media (max-width: 600px) {
  ul.half ul {
    width: 100%;
  }
  ul.half li {
    width: 100%;
    max-width: 100%;
  }
}

ul.half u:first-of-type {
  font-size: 1.2rem;
  padding-bottom: 1.5rem;
  display: inline-block;
  font-family: var(--serif);
}

.open-in-new-tab {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 1;
  background: #fff;
}

.open-in-new-tab:hover {
  background: var(--p-3);
}

/* general content */
section {
  width: 95%;
  max-width: 900px;
  padding: 1rem;
  margin: 0 auto;
}

.wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.wrapper .box {
  position: relative;
  flex-grow: 1;
  padding: 1rem;
  height: fit-content;
}
.wrapper .box-1 {
  width: 100%;
}
.wrapper .box-2 {
  width: 50%;
}
.wrapper .box-3 {
  width: 33%;
}
.wrapper .box-4 {
  width: 25%;
}
@media (max-width: 600px) {
  .wrapper .wrapper {
    flex-direction: column;
    flex-wrap: wrap;
  }
  .wrapper .boxes {
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
  }
  .wrapper .box,
  .wrapper .box-1,
  .wrapper .box-2,
  .wrapper .box-3,
  .wrapper .box-4 {
    min-width: 100%;
    width: 100%;
    max-width: none;
  }
}

/* main section treatments */
.divider {
  min-height: 200px;
  height: 20vh;
  padding: 2rem;
  margin: 2rem 0;
  border-radius: 1200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.divider h2 {
  font-size: 3rem;
}

.navigate {
  text-align: center;
  padding: 1rem;
}

.title, .exercise, .border {
  border: 1px dotted #4e4d4c;
  border-radius: 32px;
  text-align: center;
}

.title, .exercise {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.title h1, .exercise h1 {
  font-size: 2rem;
}

.exercise {
  margin-bottom: 1rem;
}

.example, a.example {
  border: 1px dotted #4e4d4c;
  border-radius: 32px;
  padding: 1rem 0.5rem;
  margin: 0.5rem 2rem;
  display: block;
}

a.example:hover {
  background: var(--text);
  color: var(--bg);
}

.full {
  width: 100%;
  height: 100%;
  min-height: 80px;
}

textarea.full {
  height: 160px;
}

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