:root {
  --content-width: 70rem;
}

*,
*:after,
*:before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url("https://rsms.me/inter/inter.css");
html {
  font-family: "Inter", sans-serif;
}
@supports (font-variation-settings: normal) {
  html {
    font-family: "Inter var", sans-serif;
  }
}

html {
  font-family: "Inter", sans-serif;
}

li {
  list-style: none;
}

a {
  color: currentColor;
  text-decoration: none;
}

strong,
b {
  font-weight: 500;
}

img {
  width: 100%;
}

blockquote {
  border-left: 2px black solid;
  padding-left: 10px;
}

code {
  background-color: #f9f9fa;
  border-radius: 3px;
  font-family: "Inter", sans-serif;
  padding: 10px;
}

.page {
  padding: 5vh 5vw 10vh;
}
.page > * {
  max-width: var(--content-width);
  margin: 0 auto;
}

.header {
  margin-bottom: 1.5rem;
}

.header a {
  position: relative;
  text-transform: uppercase;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  padding: 0.5rem 0;
}

.header .logo {
  display: block;
  margin-left: 0;
  padding: 0.5rem 0;
  font-size: 1.5em;
  font-weight: lighter;
  letter-spacing: 0;
}

.header .logo .header-separator {
  display: inline-block;
  width: 4px;
  height: 4px;
  background-color: blue;
  border-radius: 5px;
  margin: 0 5px;
}

.header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.header-separator {
  display: none;
}

.header-left-menu ul {
  margin-left: 4.6rem;
  padding: 0.5rem 0;
}
.header-left-menu a {
  margin: 0 0.5rem;
}
.header-left-menu {
  display: flex;
  flex-wrap: wrap;
}

.menu-desktop a {
  margin: 0 0.75rem;
}

.menu-desktop a[aria-current],
.menu-desktop a:hover,
.tags a.active,
.tags a:hover {
  box-shadow: inset 0 -0.2em #000;
}
.header {
  flex-direction: row;
  justify-content: space-between;
}
.menu-desktop {
  margin-right: -0.75rem;
}

main {
  min-height: calc(100vh - 10rem);
}

.intro {
  padding: 7vh 0;
  line-height: 2em;
  font-size: 1em;
}

.intro h1 {
  position: relative;
  margin-bottom: 1rem;
  font-weight: 900;
  font-size: calc(1vw + 2rem);
  z-index: 1;
}
.intro span {
  position: relative;
  margin-bottom: 1rem;
  font-weight: 300;
  font-size: 1.2em;
  z-index: 1;
  text-align: left;
  line-height: 1.5em;
}
.intro span a {
  text-decoration: underline;
}

.tags,
.tags-mobile {
  display: flex;
  align-items: center;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.075em;
  font-size: 0.75em;
}

.text {
  line-height: 1.5em;
  font-size: 1rem;
}
.text p,
.text figure,
.text ul,
.text ol {
  margin-bottom: 1.5em;
}
.text h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 3rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.text > *:first-child {
  margin-top: 0;
}
.text a {
  position: relative;
  white-space: nowrap;
  font-weight: 500;
  z-index: 1;
  display: inline-block;
  border-bottom: 2px solid #000;
}
.text figure {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.text img {
  width: 100%;
}
.text.small {
  font-size: 0.7em;
}
.text.bold {
  font-weight: bold;
}
.text.uppercase {
  text-transform: uppercase;
}
.text.lowercase {
  text-transform: lowercase;
}
.text.blue {
  color: blue;
}
.text.blue.link:hover {
  text-decoration: underline;
}

.arrow-right {
  display: inline-flex;
  align-items: center;
}
.arrow-right .body {
  width: 15px;
  height: 2px;
  background-color: blue;
  display: inline-block;
}
.arrow-right .head {
  width: 10px;
  height: 10px;
  border-top: 2px blue solid;
  border-right: 2px blue solid;
  transform: rotate(45deg);
  display: inline-block;
  margin-left: -9px;
}

.footer {
  padding: 1.5rem 5vw 10vh;
  text-align: center;
  max-width: var(--content-width);
  margin: 0 auto;
  line-height: 1.5em;
}
.footer a {
  display: inline-block;
  font-size: 0.875rem;
}
.footer > a {
  margin-bottom: 1.5rem;
  border-top: 2px solid #000;
  width: 30.5rem;
  padding-top: 0.5rem;
}

.social a {
  margin: 0 0.75rem;
  padding: 0.5rem 1rem;
  border: 2px solid #000;
  width: 7.5rem;
}
.social a:hover {
  background: #000;
  color: #fff;
}

/* COLORS  */

.grey {
  color: #cccccc;
}

@media screen and (max-width: 45em) {
  .page {
    padding: 1vh 5vw 10vh;
  }
  .header {
    margin-bottom: 5px;
  }
  .header .logo {
    font-size: 1.2em;
  }
  .header-left-menu ul {
    display: none;
  }
  .menu-desktop {
    display: none;
  }
  .menu-mobile {
    display: block;
  }
  .menu-cross {
    display: none;
  }
  .tag {
    font-size: 16px;
  }
  .intro {
    padding: 0;
    margin: 30px 0;
    font-size: 14px;
  }
  .footer > a {
    width: 16.5em;
  }
}

@media screen and (min-width: 45rem) {
  .header-left-menu ul {
    display: flex;
  }
  .header .logo {
    margin-bottom: 0;
  }
  .menu-mobile {
    display: none;
  }
  .menu-cross {
    display: none;
  }
}
