html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
:root {
  --background: white;
  --text: black;
  --li: #111;
  --faded: #ccc;
}
.ss {
  --background: #f4f0ee;
  --li: #86754d;
  --faded: rgba(0, 0, 0, 0.25);
}
.o {
  --background: #171717;
  --text: white;
  --li: #f4cdab;
  --faded: rgba(255, 255, 255, 0.25);
}
.b {
  --background: #f2f2f2;
  --li: #000;
  --text: #333;
  --faded: hsla(0, 0%, 33%, 0.3);
}

body {
  margin: 0;
  padding: 1em;
  font-size: 21px;
  background: var(--background);
  color: var(--text);
}
h1 {
  font-size: 2em;
  font-weight: 800;
  max-width: 886px;
  margin: 0 auto 1.5em;
  position: relative;
  padding-top: 1.75em;
}
h1 figure {
  position: absolute;
  top: -60px;
  left: -60px;
  z-index: -1;
}
h1 figure img {
  height: 150px;
}

.Triple article {
  margin-bottom: 2em;
}
.Triple figure,
.Triple figure img {
  display: block;
  margin: 0;
}
.Triple figure {
  margin-bottom: 1em;
}
.Triple ul {
  list-style: none;
  cursor: default;
  margin: 0;
  padding: 0;
}
.Triple li {
  font-weight: 700;
  color: var(--faded);
  cursor: default;
}
.Triple li.go {
  cursor: text;
  color: var(--li);
}

@media (min-width: 1024px) {
  h1 {
    font-size: 2.2em;
    padding-top: 0;
    margin-top: 75px;
  }
  h1 figure {
    top: -150px;
    left: -120px;
  }

  .Triple {
    column-gap: 4em;
    justify-content: center;
    display: flex;
  }
  .Triple article {
    margin-bottom: 1em;
  }
  .Triple figure {
    min-height: 3em;
    display: flex;
    align-items: flex-end;
  }

  body {
    padding: 0;
  }
  main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    flex-direction: column;
  }
}
