/* --------- */
/* Variables */
/* --------- */

:root {
  /* Colors */
  --color-white: #fff;
  --color-black: #222;
  --color-grey: #777471;
  --color-stone: #edeae6;
  --color-yellow: #f5d652;
  --color-canary: #fff5ca;
  --color-canary-tint: #fffae5;
  --color-cobalt: #0074e4;
  --color-sky: #b6dbff;
  --color-sky-tint: #daedfe;
  --color-blurple: #5522fa;
  --color-lavender: #d5d2ff;
  --color-lavender-tint: #eae8fe;
  --color-purple: #7700a2;
  --color-pink: #cb84de;
  --color-pink-tint: #efdaf5;
  --color-salmon: #ec8580;
  --color-peach: #fee5da;
  --color-peach-tint: #fef2ed;
  --color-teal: #5fddc5;
  --color-mint: #b3f4e0;
  --color-mint-tint: #d8f9f0;

  /* Concrete colors */
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-shadow-dark: rgba(0, 0, 0, 0.2);
  --color-text: var(--color-black);
  --color-background: var(--color-stone);
  --color-sheet: var(--color-white);
  --color-neutral: var(--color-grey);
  --color-link: var(--color-blurple);
  --color-accent: var(--color-teal);

  /* Spaces modular scale */
  --space-x-small: 0.25em;
  --space-small: 0.5em;
  --space-medium: 1em;
  --space-large: 2em;
  --space-x-large: 3em;
  --space-xx-large: 4em;
  --space-xxx-large: 6em;
  --space-navbar: 4em;

  /* Font families */
  --font-sans: 'Source Sans Variable', 'Helvetica Neue', helvetica, 'Apple Color Emoji', arial, sans-serif;
  --font-mono: monospace;

  /* Font size modular scale */
  --type-base: calc(1.6em + 0.5vw);
  --type-xxx-small: 55%;
  --type-xx-small: 65%;
  --type-x-small: 75%;
  --type-small: 85%;
  --type-medium: 100%;
  --type-large: 125%;
  --type-x-large: 150%;
  --type-xx-large: 200%;
  --type-xxx-large: 300%;
}

@media (min-width: 45em) {
  :root {
    --type-base: calc(0.9em + 0.9vw);
  }
}

@media (min-width: 91em) {
  :root {
    --type-base: 2.2em;
  }
}

/* ------------------------ */
/* Reboot and global stlyes */
/* ------------------------ */

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

html {
  font-size: 10px;
  overflow-x: hidden;
  scroll-padding: 10em 0 0 0;
}

body {
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-sans);
  font-size: var(--type-base);
  color: var(--color-text);
  background-color: var(--color-sheet);
}

main {
  padding-top: 8em;
  padding-top: max(8em, 20vmin);
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
  text-decoration-thickness: 0.1em;
  text-decoration-width: 0.1em;
}

a,
a:visited {
  color: inherit;
}

a:hover {
  color: var(--color-link);
  text-decoration-color: var(--color-teal);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: var(--space-medium) 0 var(--space-x-small) 0;
  padding: 0;
  font-weight: 700;
  line-height: 1.25;
}

h1 {
  margin: 0 0 var(--space-x-small) 0;
  font-size: var(--type-xx-large);
  line-height: 1;
  letter-spacing: -0.03em;
}

@media (min-width: 45em) {
  h1 {
    font-size:var(--type-xxx-large);
  }
}

h2 {
  font-size: calc(var(--type-xx-large) - 15%);
}

@media (min-width: 45em) {
  h2 {
    font-size:var(--type-xx-large);
  }
}

h3 {
  font-size: calc(var(--type-x-large) - 15%);
}

@media (min-width: 45em) {
  h3 {
    font-size:var(--type-x-large);
  }
}

h4,
h5,
h6 {
  font-size: var(--type-large);
}

p,
ul,
ol {
  margin: 0 0 var(--space-medium) 0;
  padding: 0;
  line-height: 1.5;
}

ul,
ol {
  margin-left: 1em;
}

li {
  margin: 0 0 var(--space-small) 0
}

ul li ul,
ul li ol,
ol li ol,
ol li ul {
  margin: var(--space-small) 0 var(--space-medium) var(--space-medium);
}

small {
  font-size: var(--type-x-small);
  line-height: 1.5;
}

del {
  text-decoration: line-through;
}

figure {
  position: relative;
  margin: var(--space-small) auto var(--space-large) auto;
  width: 100%;
  text-align: center;
}

figure img {
  display: block;
  margin: 0 auto;
  box-shadow: 2rem 2rem 6rem var(--color-shadow);
  border-radius: 1rem;
}

figure a {
  border-bottom: 0;
}

figcaption {
  margin: var(--space-medium) 0 var(--space-medium) 0;
  font-style: italic;
  font-weight: normal;
  font-size: var(--type-x-small);
  line-height: 1.3;
}

img,
svg,
video {
  max-width: 100%;
  height: auto
}

hr {
  width: 100%;
  height: 0.2rem;
  display: block;
  clear: both;
  margin: var(--space-xx-large) auto;
  padding: 0;
  border: 0;
  background: linear-gradient(to right, var(--color-purple) 0%, var(--color-salmon) 100%);
}

blockquote {
  quotes: none;
}

blockquote p:before {
  content: '“';
  display: inline;
}

blockquote p:after {
  content: '”';
  display: inline;
}

blockquote cite {
  display: block;
  font-size: var(--type-x-small);
  font-weight: 700;
}

embed,
iframe,
object {
  max-width: 100%;
}

label {
  display: block;
  margin: 0.5em 0 0 0;
  font-weight: normal;
  font-size: var(--type-small);
  letter-spacing: -0.02em;
  line-height: 1.5;
  text-align: left;
}


/* --------- */
/* Utilities */
/* --------- */

.push {
  margin: var(--space-medium) !important;
}

.push--top {
  margin-top: var(--space-medium) !important;
}

.push--bottom {
  margin-bottom: var(--space-medium) !important;
}

.push-x-small {
  margin: var(--space-x-small) !important;
}

.push-x-small--top {
  margin-top: var(--space-x-small) !important;
}

.push-x-small--bottom {
  margin-bottom: var(--space-x-small) !important;
}

.push-small {
  margin: var(--space-small) !important;
}

.push-small--top {
  margin-top: var(--space-small) !important;
}

.push-small--bottom {
  margin-bottom: var(--space-small) !important;
}

.push-large {
  margin: var(--space-large) !important;
}

.push-large--top {
  margin-top: var(--space-large) !important;
}

.push-large--bottom {
  margin-bottom: var(--space-large) !important;
}

.push-x-large {
  margin: var(--space-x-large) !important;
}

.push-x-large--top {
  margin-top: var(--space-x-large) !important;
}

.push-x-large--bottom {
  margin-bottom: var(--space-x-large) !important;
}

.flush {
  margin: 0 !important;
}

.flush--top {
  margin-top: 0 !important;
}

.flush--bottom {
  margin-bottom: 0 !important;
}

.txt-heavy {
  font-size: var(--type-large);
  font-weight: 500;
}

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

.txt-right {
  text-align: right;
}

.hide {
  display: none !important;
}

.hide-screens {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}

@media (max-width: 44.99em) {
  .hide-mobile {
      display:none !important;
  }
}

@media (min-width: 45em) {
  .hide-desktop {
      display:none !important;
  }
}

@media (max-width: 44.99em) {
  .txt-center-mobile {
    text-align:center;
  }
}

.txt-upcase {
  text-transform: uppercase;
}

.txt-undecorated {
  text-decoration: none;
}

.txt-xxx-small {
  font-size: var(--type-xxx-small);
}

.txt-xx-small {
  font-size: var(--type-xx-small);
}

.txt-x-small {
  font-size: var(--type-x-small);
}

.txt-small {
  font-size: var(--type-small);
}

.txt-medium {
  font-size: var(--type-medium);
}

.txt-large {
  font-size: var(--type-large);
}

.txt-x-large {
  font-size: var(--type-x-large);
}

.txt-xx-large {
  font-size: var(--type-xx-large);
}

.txt-xxx-large {
  font-size: var(--type-xxx-large);
}

.txt-tighter {
  letter-spacing: -0.03rem;
}

.txt-kern {
  letter-spacing: 0;
}

.txt-leaded {
  line-height: 1.25;
}

.txt-rule {
  position: relative;
}

@supports (background-clip: text) or (-webkit-background-clip: text) {
  .txt-knockout {
    padding-right:0.03em;
    color: transparent;
    background: url('images/pebble-pink-purple.svg') center/110% auto no-repeat;
    -webkit-background-clip: text;
    background-clip: text;
  }
}

/* ---------- */
/* Animations */
/* ---------- */

@keyframes fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fade-in {
  opacity: 0;
  animation: fade-in 0.3s ease-out forwards
}

/* ------- */
/* Layouts */
/* ------- */

.grid {
  display: grid;
  grid-template-columns: [max] 1fr [l] 1fr [m] repeat(3, [m] 28vw) [m] 1fr [l] 1fr [max];
}

@media(min-width: 45em) {
  .grid {
    grid-template-columns: [max] 1fr [l] minmax(11ch, 0.7fr) [m] repeat(3, [m] 21.66ch) [m] minmax(11ch, 0.7fr) [l] 1fr [max];
  }
}

@media (min-width: 91em) {
  .grid {
    grid-template-columns: [max] 1fr [l] 15ch [m] repeat(3, [m] 21.66ch) [m] 15ch [l] 1fr [max];
  }
}

.grid > :not([class*="grid"]) {
  grid-column: m / m 4;
}

.grid__max {
  grid-column: max / max 2;
}

.grid__wide {
  grid-column: l / l 2;
}

.grid__medium {
  grid-column: m / m 4;
}

/* ---------- */
/* Components */
/* ---------- */

/* hiw-hero-splash */

.hiw-hero-splash {
  position: relative;
  overflow: visible;
}

.hiw-hero-splash:after {
  content: '';
  display: block;
  position: absolute;
  width: 120%;
  height: 120%;
  top: -6%;
  left: -6%;
  z-index: -1;
  background: url(images/abstract.svg) center top/contain no-repeat;
}

/* hiw-hero */

.hiw-hero {
  display: block;
  position: relative;
  min-height: 10em;
  margin: 0 0 1em 0;
  background-color: var(--color-sheet);
  box-shadow: 2rem 2rem 6rem var(--color-shadow);
  border-radius: 1rem;
}

/* hiw-address */

.hiw-address {
  display: inline-block;
  margin: 0 auto;
  padding: 0.125em 0.5em 0.25em 0.5em;
  font-size: max(5.5rem, 8vw);
  font-weight: 300;
  letter-spacing: -0.05em;
  line-height: 0.9;
  text-align: center;
  background-color: var(--color-canary);
  background: linear-gradient(90deg, var(--color-peach) 0%, var(--color-canary) 100%);
  border-radius: 2em;
}

@media (min-width: 91em) {
  .hiw-address {
    font-size: 400%;
  }
}

/* hiw-screener */

.hiw-screener {
  position: relative;
}

@media (min-width: 45em) {
  .hiw-screener:before,
  .hiw-screener:after {
    position:absolute;
    top: 25%;
    width: 6em;
    height: 6em;
    margin: 0;
    padding: 3em 0 1em 0;
    border: 0;
    border-radius: 0.5em;
    z-index: -1;
    font-size: 165%;
    text-align: center;
    font-weight: 600;
  }

  .hiw-screener:before {
    left: -5.5em;
    content: 'Yes';
    color: var(--color-blurple);
    background: #f7f3ff url(images/screener-accept.svg) center top 1em/2em no-repeat;
    transform: rotate(-3deg)
  }

  .hiw-screener:after {
      right: -5.5em;
      content: 'No';
      color: var(--color-cobalt);
      background: #f3f9ff url(images/screener-decline.svg) center top 1em/2em no-repeat;
      transform: rotate(3deg);
  }
}

/* hiw-box */

.hiw-box {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(17em, 1fr));
  grid-gap: 1em;
  align-items: center;
  direction: rtl;
  margin: 1em 0;
  padding: 1em;
  color: var(--color-cobalt);
  background-color: var(--color-canary);
  border-radius: 0.75em;
}

@media (min-width: 45em) {
  .hiw-box {
    left:-1em;
    transform: rotate(-1deg);
    background: var(--color-canary) url(images/pebble-teal.svg) left -7em center/auto 125% no-repeat;
  }
}

@media (min-width: 45em) {
  .hiw-box--reverse {
    left:1em;
    direction: ltr;
    transform: rotate(1deg);
  }
}

.hiw-box--blurple {
  color: var(--color-peach);
  background-color: var(--color-blurple);
}

@media (min-width: 45em) {
  .hiw-box--blurple {
    transform:rotate(1deg);
    background: var(--color-blurple) url(images/pebble-pink-purple.svg) right -6em center/auto 126% no-repeat;
  }
}

.hiw-box--minty {
  color: var(--color-purple);
  background-color: var(--color-mint);
}

@media (min-width: 45em) {
  .hiw-box--minty {
    background:var(--color-mint) url(images/pebble-pink.svg) left -5em center/auto 127% no-repeat;
  }
}

.hiw-box__copy {
  direction: ltr;
  margin: 0 1em;
}

.hiw-box__image {
  margin: 0;
  background-color: var(--color-white);
  box-shadow: 2rem 2rem 6rem var(--color-shadow);
  border-radius: 1rem;
}

.hiw-reply-split {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
  grid-gap: 1.5em;
  align-items: center;
  text-align: left;
}

.hiw-reply-caption {
  position: absolute;
  bottom: -1.5em;
  right: -3em;
  width: 80%;
  transform: rotate(-15deg);
  font-size: var(--type-small);
}

.hiw-reply-caption span {
  padding: 0 0.5rem;
  vertical-align: middle;
  color: var(--color-white);
  background-color: var(--color-blurple);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 0.5rem;
}

.hiw-reply-caption:before {
  content: '';
  display: block;
  position: absolute;
  width: 100%;
  height: 4em;
  top: -4em;
  background: url(images/curly-thumb.svg) center center / contain no-repeat;
}

@media (min-width: 45em) {
  .hiw-reply-offset {
    display:grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1.5em;
  }
}

.hiw-reply-offset__wide {
  grid-column: 1 / span 2;
  grid-row: 1;
}

.hiw-reply-offset__narrow {
  grid-column: 3;
  grid-row: 1;
}

@media (min-width: 45em) {
  .hiw-reply-offset__narrow {
      margin-top:1em;
  }
}

.hiw-files {
  position: relative;
}

.hiw-files:before {
  content: '';
  display: block;
  position: absolute;
  width: 178%;
  height: 100%;
  left: -39%;
  z-index: -1;
  background: url(images/files-bg.svg) center center / contain no-repeat;
}

.hiw-control {
  margin: 1em 0 1.5em 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15em, 1fr));
  grid-gap: 1em;
  align-items: center
}

.hiw-control--reverse {
  direction: rtl
}

.hiw-control__text {
  direction: ltr;
  margin: 0
}

.hiw-control__image {
  display: block;
  max-width: min(20em, 100%);
  margin: 0 auto;
  border-radius: 0.5em;
  box-shadow: 2rem 2rem 6rem var(--color-shadow)
}



/* button */
/* This is the only button class, it uses em for padding to scale according to the */
/* current font size => no need for variants such as button--lg button--sm */

.button {
  transition: color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
  display: inline-block;
  padding: 0.4em 1em;
  color: var(--color-sheet);
  font-family: var(--font-sans);
  text-decoration: none;
  text-align: center;
  line-height: normal;
  -webkit-appearance: none;
  background-color: var(--color-link) !important;
  background: linear-gradient(90deg, var(--color-link) 0%, var(--color-cobalt) 100%) !important;
  border-radius: 1.5em;
  border: 0;
  box-shadow: none;
}

@media (max-width: 44.99em) {
  .button {
    margin-bottom:var(--space-small);
  }
}

.button:visited {
  color: var(--color-sheet);
}

.button:hover {
  color: var(--color-sheet);
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 0 0 0.15rem var(--color-accent);
}

.button--fancy {
  background: linear-gradient(90deg, var(--color-cobalt) 0%, var(--color-purple) 100%) !important;
}

.button--fill {
  display: block;
}

@media (max-width: 44.99em) {
  .button--block {
    border-radius:0.5em;
  }
}

/* header */

.header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  box-shadow: 0 0 3rem transparent;
  background-color: var(--color-sheet);
}

.header--scrolled {
  box-shadow: 0 0 3rem var(--color-shadow);
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
  z-index: 20000;
  margin: 0;
  padding: 0.75rem;
}

@media (min-width: 45em) {
  .header__nav {
    padding: 1rem;
  }
}

.header__logo {
  width: 4.5em;
  height: 2.2em;
  margin: 0;
  text-align: left;
}

.header__logo svg {
  overflow: visible;
  width: 100%;
  height: auto;
}

.header__logo .gradient-start,
.header__logo .gradient-end {
  transition: stop-color 0.75s ease;
}

.header__logo .gradient-start {
  stop-color: var(--color-blurple);
}

.header__logo .gradient-end {
  stop-color: var(--color-blurple);
}

.header__logo:hover .gradient-start {
  stop-color: var(--color-purple);
}

.header__logo:hover .gradient-end {
  stop-color: var(--color-salmon);
}

.header__skip:hover,
.header__skip:active,
.header__skip:focus {
  clip: auto !important;
  top: 1rem;
  left: 1rem;
  width: auto;
  height: auto;
  z-index: 100000;
}

.header__links {
  display: block;
  margin: 0;
  padding: 0;
  font-size: var(--type-medium);
}

@media (max-width: 44.99em) {
  .header__links {
    position:absolute;
    top: 8rem;
    right: -25rem;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin: 0;
    padding: 0;
    font-size: var(--type-large);
    -webkit-overflow-scrolling: touch;
  }

  .header__links::after {
    transition: opacity 0.15s ease-in-out;
    content: '';
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-backdrop-filter: blur(15px);
    opacity: 0;
    pointer-events: none;
    background-color: rgba(255, 255, 255, 0.8);
  }

  @supports (-webkit-backdrop-filter: blur()) {
    .header__links::after {
      -webkit-backdrop-filter:blur(10px);
      background-color: rgba(255, 255, 255, 0.4);
    }
  }
}

.header__link {
  transition: color 0.2s ease, text-decoration-color 0.2s ease, box-shadow 0.2s ease;
  transform: none;
  margin: 0 0 0 0.6em;
  display: inline-block;
  line-height: 1.5;
  font-weight: 700;
}

@media (max-width: 44.99em) {
  .header__link {
    transition:transform 0.15s ease-in;
    transform: translate(0, 0);
    display: inline-block;
    padding: 0.2em 1em;
    margin: 0 0 0.25em 0;
    line-height: 2;
    text-decoration: none;
    color: var(--color-white);
    background-color: var(--color-teal);
    background: linear-gradient(90deg, var(--color-purple) 0%, var(--color-salmon) 100%);
    border-radius: 3em;
  }

  .header__link:visited,.header__link:hover {
    color: var(--color-white);
    box-shadow: none;
  }

  .header__link:nth-child(2) {
    transition-delay: 0.05s;
  }

  .header__link:nth-child(3) {
      transition-delay: 0.1s;
  }

  .header__link:nth-child(4) {
      transition-delay: 0.15s;
  }

  .header__link:nth-child(5) {
      transition-delay: 0.2s;
  }

  .header__link:nth-child(6) {
      transition-delay: 0.25s;
  }

  .header__link:nth-child(7) {
      transition-delay: 0.3s;
  }

  .header__link:nth-child(8) {
      transition-delay: 0.35s;
  }
}

@media (min-width: 45em) {
  .header__checkbox {
    display:none !important;
  }
}

.header__toggle {
  display: none;
}

@media (max-width: 44.99em) {
  .header__toggle {
    display:block;
    margin: 0;
    padding: 0.5em;
    cursor: pointer;
    font-size: var(--type-medium);
    font-weight: 700;
    color: var(--color-link);
  }
}

@media (max-width: 44.99em) {
  .header__toggle-icon {
    transition-duration:0s;
    transition-delay: 0.15s;
    position: relative;
    display: inline-flex;
    top: -0.4rem;
    width: 1.75rem;
    height: 0.3rem;
    margin-right: 0.125em;
    background-color: var(--color-link);
    border-radius: 0.5rem;
  }

  .header__toggle-icon::after,
  .header__toggle-icon::before {
    right: 0;
    transition-delay: 0.15s, 0s;
    transition-duration: 0.15s;
    transition-property: margin, transform;
    display: block;
    content: '';
    position: absolute;
    width: 2.25rem;
    height: 0.3rem;
    background-color: var(--color-link);
    border-radius: 0.5rem;
  }

  .header__toggle-icon::before {
    margin-top: -0.7rem;
  }

  .header__toggle-icon::after {
    margin-top: 0.7rem;
  }
}

.header__toggle-opened {
  display: none
}

.header__toggle-closed {
  display: inline;
}

@media (max-width: 44.99em) {
  .header__checkbox:checked ~ .header__links::after {
    opacity:1;
    pointer-events: auto;
  }

  .header__checkbox:checked ~ .header__links .header__link {
    transition-duration: 0.25s;
    transition-timing-function: cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translate(-27rem, 0);
  }
}

.header__checkbox:checked ~ .header__toggle .header__toggle-icon {
  background-color: transparent;
}

.header__checkbox:checked ~ .header__toggle .header__toggle-icon::before,
.header__checkbox:checked ~ .header__toggle .header__toggle-icon::after {
  transition-delay: 0s, 0.2s;
  margin-top: 0;
}

.header__checkbox:checked ~ .header__toggle .header__toggle-icon::before {
  transform: rotate(45deg);
}

.header__checkbox:checked ~ .header__toggle .header__toggle-icon::after {
  transform: rotate(-45deg);
}

.header__checkbox:checked ~ .header__toggle .header__toggle-opened {
  display: inline;
}

.header__checkbox:checked ~ .header__toggle .header__toggle-closed {
  display: none;
}

/* footer */

.footer {
  margin: 10em 0 0 0;
  padding: 1em 0;
  text-align: center;
}

.footer__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (min-width: 45em) {
  .footer__nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.footer__nav-item {
  margin: 0.25em 0.125em;
  padding: 0.25em 0.75em;
  font-size: var(--type-small);
  color: var(--color-blurple);
  background-color: var(--color-canary);
  border-radius: 1em;
  text-decoration: none;
}

.footer__nav-item:hover {
  background: linear-gradient(45deg, var(--color-canary) 0%, var(--color-peach) 100%);
}

.footer__nav-item:visited {
  color: var(--color-blurple);
}

/* unsupported */
/* Adds an overlay asking users having browsers that don't support display: grid  */
/* to upgrade  */

.unsupported {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  padding: 4em 2em;
  z-index: 10000;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  color: #000;
  background-color: #fff;
}

.unsupported p {
  max-width: 800px;
  margin: 0 auto;
}

@supports (display: grid) {
  .unsupported {
    display:none;
    visibility: hidden;
  }
}
