@charset "UTF-8";
@font-face {
  font-family: 'miso';
  src: url("miso-bold-webfont.woff2") format("woff2"), url("miso-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal; }

/*! https://hankchizljaw.com/wrote/a-modern-css-reset/ */
*, ::after, ::before {
  box-sizing: border-box; }

ol[class], ul[class] {
  padding: 0; }

blockquote, body, dd, dl, figcaption, figure, h1, h2, h3, h4, li, ol[class], p, ul[class] {
  margin: 0; }

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5; }

ol[class], ul[class] {
  list-style: none; }

a:not([class]) {
  text-decoration-skip-ink: auto; }

img {
  max-width: 100%;
  display: block; }

article > * + * {
  margin-top: 1em; }

button, input, select, textarea {
  font: inherit; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0s !important;
    scroll-behavior: auto !important; } }

/*----------------------------------------------------------------------*

	BASIC ELEMENTS

*----------------------------------------------------------------------*/
html, body {
  min-height: 100%;
  font-family: Helvetica, Arial, sans-serif;
  background-color: #333;
  /* For overscroll on mobile */
  overflow-x: hidden; }

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #ffefc8;
  color: #014b7b;
  font-family: dinosaur, sans-serif;
  line-height: 1.3em; }

header {
  background: #014b7b;
  color: #f7983e;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 1rem; }
  header a {
    text-decoration: none; }
  header a[href="/"] {
    outline: none; }
    header a[href="/"]:hover #mouth, header a[href="/"]:active #mouth, header a[href="/"]:focus #mouth {
      animation: mouthmove .2s ease-in-out 3; }
    header a[href="/"]:hover span,
    header a[href="/"]:hover span b, header a[href="/"]:active span,
    header a[href="/"]:active span b, header a[href="/"]:focus span,
    header a[href="/"]:focus span b {
      opacity: 1; }
  header h1 {
    flex: 1;
    display: flex;
    align-items: center;
    text-decoration: none; }
    header h1 img, header h1 svg {
      width: 60px;
      height: 60px;
      margin: 0 10px 0 0;
      object-fit: contain; }

@keyframes mouthmove {
  0%, 100% {
    height: 9px;
    y: 55px; }
  50% {
    height: 0px;
    y: 59px; } }
    header h1 span {
      position: relative;
      padding: .4em .8em;
      background: #42c0bb;
      color: #ffefc8;
      font-size: 18px;
      font-family: montserrat, sans-serif;
      text-transform: uppercase;
      letter-spacing: .08em;
      text-decoration: none;
      border-radius: 4px;
      opacity: 0;
      transition: opacity .2s ease-in-out; }
      header h1 span b {
        opacity: 0;
        transition: opacity .2s .2s ease-in-out; }
      header h1 span:after {
        content: "";
        position: absolute;
        bottom: 0;
        right: calc(100% - 10px);
        width: 10px;
        height: 10px;
        border: 10px solid rgba(0, 0, 0, 0);
        border-bottom: 10px solid #42c0bb; }
  header nav {
    position: relative;
    z-index: 100;
    display: flex; }
    header nav button,
    header nav a {
      display: inline-block;
      margin: 0 1em;
      padding: .6em 1.6em;
      color: #ffefc8;
      background: none;
      border: none;
      font-family: montserrat, sans-serif;
      font-weight: 700;
      font-size: 13px;
      line-height: 1em;
      letter-spacing: .2em;
      text-transform: uppercase;
      text-decoration: none;
      outline: none; }
      header nav button:hover, header nav button:active, header nav button:focus,
      header nav a:hover,
      header nav a:active,
      header nav a:focus {
        background: none;
        color: #f7983e; }
    header nav .show_fallacies_list {
      position: relative;
      z-index: 2; }
    header nav .fallacies_list {
      position: absolute;
      left: 9999px;
      padding: 40px 0 10px;
      background: #014b7b;
      list-style: none;
      opacity: 0;
      transition: opacity .15s ease-in-out;
      z-index: -1; }
      header nav .fallacies_list a {
        display: block;
        margin: 0;
        text-align: left;
        line-height: 1.3em; }
    header nav:hover .fallacies_list,
    header nav .fallacies_list.visible {
      top: 0;
      left: 0;
      opacity: 1; }
  header .mobile_nav {
    display: none; }

footer {
  padding: .8em 1.2em;
  background: #014b7b;
  color: #ffefc8; }
  footer .right {
    display: flex;
    align-items: flex-start; }
  footer a {
    color: #ffefc8; }
    footer a:hover, footer a:active, footer a:focus {
      color: #f7983e; }
  footer img,
  footer svg {
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 0 0 1em; }
    footer img path,
    footer svg path {
      transition: fill .3s ease-in-out; }
    footer img:hover path,
    footer svg:hover path {
      fill: #f7983e; }

a {
  transition: all .2s ease;
  touch-action: none; }

button {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: all .2s ease;
  touch-action: none; }

@supports (-webkit-appearance: none) {
  input[type="checkbox"] {
    -webkit-appearance: none;
    width: 1.6rem;
    height: 1.6rem;
    border: 1px solid #808080; }
  input[type="checkbox"]:focus {
    border: 1px solid red; }
  input[type="checkbox"]:checked {
    position: relative;
    background: none; }
  input[id="checkbox"]:checked::after {
    content: "✔︎";
    position: absolute;
    top: -.08em;
    left: .18em;
    font-family: helvetica, arial, sans-serif;
    font-size: 1.6rem;
    list-height: 1em; } }

::selection {
  background-color: #f7983e;
  color: #181c4f; }

::-moz-selection {
  background-color: #8ed2cc;
  color: #181c4f; }

/*----------------------------------------------------------------------*

	COMMON CLASSES

*----------------------------------------------------------------------*/
.hide-text {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.mobile_only {
  display: none; }

.left {
  float: left; }

.right {
  float: right; }

.clear {
  clear: both; }

.center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

button,
.button {
  padding: 0.7em 1.7em;
  background: #42c0bb;
  color: #ffefc8;
  font-family: montserrat, sans-serif;
  font-weight: 700;
  font-size: 11px;
  line-height: 1em;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  transition: all .2s ease-in-out;
  outline: none; }
  button:hover, button:active, button:focus,
  .button:hover,
  .button:active,
  .button:focus {
    background: #f7983e;
    color: #181c4f; }

.cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.show-on-focus {
  display: block;
  width: 1px;
  height: 1px;
  margin: 0;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  color: #f7983e; }

.show-on-focus:focus {
  width: auto;
  height: auto;
  clip: auto; }

/*----------------------------------------------------------------------*

	INDIVIDUAL PAGES

*----------------------------------------------------------------------*/
.dialogue {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 30em;
  margin: 0 30px;
  text-align: center; }
  .dialogue .bubble {
    position: relative;
    padding: 15px;
    border-radius: 12px;
    line-height: 1.2em;
    opacity: 0;
    transform: translate(0, 20px);
    transition: opacity .3s ease-in-out, transform .4s ease-in-out; }
    .dialogue .bubble:after {
      content: "";
      position: absolute;
      bottom: 0;
      right: calc(100% - 25px);
      width: 50px;
      height: 25px;
      border: 25px solid rgba(0, 0, 0, 0);
      border-bottom: 25px solid #014b7b; }
    .dialogue .bubble.visible {
      opacity: 1;
      transform: translate(0, 0); }
  .dialogue .bubble1 {
    margin: 0 0 20px;
    background: #014b7b;
    color: #ffefc8;
    font-size: 24px; }
    .dialogue .bubble1.visible {
      transition: opacity .3s .3s ease-in-out, transform .4s .3s ease-in-out; }
  .dialogue .bubble2 {
    position: relative;
    padding-bottom: 0.7em;
    background: #42c0bb;
    color: #181c4f;
    font-size: 36px;
    font-weight: 400; }
    .dialogue .bubble2 .detected_container {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 100%;
      display: none; }
    .dialogue .bubble2 .detected {
      font-size: 1.8em;
      font-weight: 700;
      animation: blink .6s ease-in-out infinite; }
    .dialogue .bubble2 .fallacy_description {
      opacity: 1; }
    .dialogue .bubble2.visible {
      transition: opacity .3s 1.7s ease-in-out, transform .4s 1.7s ease-in-out; }
    .dialogue .bubble2:after {
      bottom: auto;
      right: auto;
      top: 0;
      left: calc(100% - 25px);
      border-bottom: 25px solid rgba(0, 0, 0, 0);
      border-top: 25px solid #42c0bb; }

.home {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #8ed2cc;
  font-size: 42px;
  line-height: 1.1em;
  text-align: center; }
  .home .content {
    width: 90vw;
    max-width: 20em;
    padding: 0 0 80px; }
  .home .robots_container {
    position: relative;
    flex: 3;
    padding: 30px 0 20px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .home .robot1, .home .robot2 {
    flex: 1; }
  .home .dialogue {
    flex: 2; }
    .home .dialogue .bubble1.visible {
      transition: opacity .3s 0 ease-in-out, transform .4s 0 ease-in-out; }
    .home .dialogue .bubble2 {
      padding: 5px;
      background: #ffefc8; }
      .home .dialogue .bubble2.visible {
        transition: opacity .3s .5s ease-in-out, transform .4s .5s ease-in-out; }
      .home .dialogue .bubble2:after {
        border-top-color: #ffefc8; }
      .home .dialogue .bubble2 button {
        position: relative;
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0.7em 1.2em;
        font-family: dinosaur, sans-serif;
        font-size: 24px;
        line-height: .8em;
        white-space: nowrap;
        color: #181c4f;
        background: #ffefc8;
        border: 1px solid #181c4f;
        border-radius: 10px;
        z-index: 10;
        cursor: pointer; }
        .home .dialogue .bubble2 button:hover, .home .dialogue .bubble2 button:focus, .home .dialogue .bubble2 button:active {
          color: #f15f37;
          border-color: #f15f37;
          outline: none; }
        .home .dialogue .bubble2 button:after {
          content: "▾";
          position: absolute;
          right: 10px;
          top: calc(50% - .5em); }
      .home .dialogue .bubble2 .bubble_links {
        position: absolute;
        top: calc(100% - 1em);
        left: 0;
        width: 100%;
        padding: .9em 5px 0;
        background: #ffefc8;
        z-index: -1;
        border-radius: 10px; }
        .home .dialogue .bubble2 .bubble_links a {
          display: block;
          margin: .3em 0;
          padding: .5em;
          border: none;
          background: #ffe095;
          color: #181c4f;
          font-weight: 700;
          font-size: 16px;
          line-height: 1em;
          letter-spacing: .2em;
          text-transform: uppercase;
          text-decoration: none;
          outline: none;
          border-radius: 5px; }
          .home .dialogue .bubble2 .bubble_links a:hover, .home .dialogue .bubble2 .bubble_links a:focus, .home .dialogue .bubble2 .bubble_links a:active {
            background: #f7983e; }
        .home .dialogue .bubble2 .bubble_links a:last-child {
          padding: .2em 0 .5em;
          background: none;
          text-transform: none;
          text-decoration: underline; }
          .home .dialogue .bubble2 .bubble_links a:last-child:hover, .home .dialogue .bubble2 .bubble_links a:last-child:focus, .home .dialogue .bubble2 .bubble_links a:last-child:active {
            color: #f15f37; }
  .home img {
    display: block;
    margin: 0 auto 40px;
    width: 12vw;
    max-width: none; }
  .home h4 {
    margin: 0 0 1em;
    font-size: 35px; }
  .home p {
    margin: 0 40px;
    font-size: 18px;
    line-height: 1.5em; }
  .home .buttons {
    margin: 2em 0 0; }
  .home .button {
    margin: 0 1em;
    font-size: 13px;
    background: #f7983e;
    color: #181c4f; }
    .home .button:hover, .home .button:active, .home .button:focus {
      background: #181c4f;
      color: #f7983e; }

.fallacy {
  flex: 1;
  display: flex;
  flex-direction: column; }
  .fallacy .title {
    position: relative;
    padding: 30px;
    background: #181c4f url(../img/bgpattern1.svg);
    color: #ffefc8;
    font-family: miso, sans-serif;
    text-align: center;
    text-transform: uppercase; }
    .fallacy .title h3 {
      font-size: 40px;
      line-height: 1em;
      color: #8ed2cc; }
    .fallacy .title h1 {
      font-size: 90px;
      line-height: 1.1em;
      color: #ffefc8;
      opacity: 0; }
    .fallacy .title .previous_fallacy,
    .fallacy .title .next_fallacy {
      position: absolute;
      top: 50%;
      left: 20px;
      transform: translateY(-50%);
      width: 25px;
      height: 40px;
      border: 25px solid rgba(0, 0, 0, 0);
      border-right: 25px solid #ffefc8; }
      .fallacy .title .previous_fallacy span,
      .fallacy .title .next_fallacy span {
        position: absolute;
        top: calc(50% - 10px);
        left: 50px;
        color: #ffefc8;
        font-size: 28px;
        width: 300px;
        text-align: left;
        opacity: 0;
        transition: opacity .2s .1s ease-in-out; }
      .fallacy .title .previous_fallacy:hover, .fallacy .title .previous_fallacy:active, .fallacy .title .previous_fallacy:focus,
      .fallacy .title .next_fallacy:hover,
      .fallacy .title .next_fallacy:active,
      .fallacy .title .next_fallacy:focus {
        border-right-color: #f7983e; }
        .fallacy .title .previous_fallacy:hover span, .fallacy .title .previous_fallacy:active span, .fallacy .title .previous_fallacy:focus span,
        .fallacy .title .next_fallacy:hover span,
        .fallacy .title .next_fallacy:active span,
        .fallacy .title .next_fallacy:focus span {
          opacity: 1; }
    .fallacy .title .next_fallacy {
      left: auto;
      right: 20px;
      border-right: 25px solid rgba(0, 0, 0, 0);
      border-left: 25px solid #ffefc8; }
      .fallacy .title .next_fallacy span {
        left: auto;
        right: 50px;
        text-align: right; }
      .fallacy .title .next_fallacy:hover, .fallacy .title .next_fallacy:active, .fallacy .title .next_fallacy:focus {
        border-right-color: rgba(0, 0, 0, 0);
        border-left-color: #f7983e; }
  .fallacy .robots_container {
    position: relative;
    flex: 1;
    padding: 40px 30px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .fallacy .robots {
    display: flex;
    align-items: center;
    height: 40vh; }
    .fallacy .robots img, .fallacy .robots svg {
      height: 100%;
      max-width: 25vw; }
  .fallacy .robot1,
  .fallacy .robot2 {
    height: 100%; }
  .fallacy .robot1 #body {
    animation: body_wobble 5s ease-in-out infinite;
    transform-origin: 177px 495px; }
  .fallacy .robot1 #leftarm {
    animation: arm_wobble 3s ease-in-out infinite;
    transform-origin: 117px 285px; }
  .fallacy .robot1 #rightarm {
    animation: arm_wobble 2s ease-in-out infinite;
    transform-origin: 237px 285px; }
  .fallacy .robot1 #lightning1 {
    animation: lightning 1s ease-in-out infinite;
    transform-origin: 177px 285px; }
  .fallacy .robot1 #lightning2 {
    animation: lightning .9s -.3s ease-in-out infinite;
    transform-origin: 177px 285px; }
  .fallacy .robot1 #lightning3 {
    animation: lightning 1.1s -.7s ease-in-out infinite;
    transform-origin: 177px 285px; }
  .fallacy .robot1 #arrow1 {
    animation: gauge 4s ease-in-out infinite;
    transform-origin: 183px 297px; }
  .fallacy .robot1 #arrow2 {
    animation: gauge 5s -2s ease-in-out infinite reverse;
    transform-origin: 183px 364px; }
  .fallacy .robot1 #lefteye, .fallacy .robot1 #righteye {
    animation: eyeblink 9s ease-in-out infinite; }

@keyframes arm_wobble {
  0%, 100% {
    transform: rotate(12deg); }
  50% {
    transform: rotate(-2deg); } }

@keyframes eyeblink {
  0%, 59%, 61%, 71%, 88%, 90%, 92%, 94%, 96%, 100% {
    rx: 12px; }
  63%, 69% {
    rx: 3px; }
  60%, 89%, 91%, 93%, 95% {
    rx: 0px; } }

@keyframes body_wobble {
  0%, 100% {
    transform: rotate(2deg); }
  50% {
    transform: rotate(-2deg); } }

@keyframes lightning {
  0% {
    opacity: 0; }
  50% {
    opacity: 1; }
  80% {
    opacity: 1; }
  100% {
    opacity: 0; } }

@keyframes gauge {
  0%, 100% {
    transform: rotate(0deg); }
  8% {
    transform: rotate(-50deg); }
  22% {
    transform: rotate(-10deg); }
  34% {
    transform: rotate(10deg); }
  50% {
    transform: rotate(-20deg); }
  80% {
    transform: rotate(-90deg); }
  84% {
    transform: rotate(-20deg); }
  92% {
    transform: rotate(10deg); } }
  .fallacy .robot2 {
    position: relative; }
    .fallacy .robot2 .wave {
      position: fixed;
      top: 0;
      left: 0;
      background-image: url(../img/wave.png);
      background-repeat: repeat-x;
      background-size: contain;
      animation: sinewave 60s linear infinite; }
    .fallacy .robot2 #leftarm, .fallacy .robot2 #lefthand {
      animation: body_wobble 2s -1s ease-in-out infinite;
      transform-origin: 77px 170px; }
    .fallacy .robot2 #rightarm {
      animation: body_wobble 2s ease-in-out infinite;
      transform-origin: 247px 170px; }
    .fallacy .robot2 #light1 {
      animation: lightblink 19s ease-in-out infinite; }
    .fallacy .robot2 #light2 {
      animation: lightblink 18s 12.5s ease-in-out infinite; }
    .fallacy .robot2 #light3 {
      animation: lightblink 9s -4.3s ease-in-out infinite; }
    .fallacy .robot2 #lefteye, .fallacy .robot2 #righteye {
      animation: eyeblink2 9s -2.3s ease-in-out infinite; }
    .fallacy .robot2.animate_warning #warning {
      animation: blink .5s .7s ease-in-out 3; }

@keyframes sinewave {
  0% {
    background-position: 0% center; }
  100% {
    background-position: -500px center; } }

@keyframes lightblink {
  0%, 22%, 34%, 49%, 67%, 78%, 84%, 100% {
    fill: #181c4f; }
  24%, 32%, 51%, 65%, 80%, 82% {
    fill: #ffce54; } }

@keyframes eyeblink2 {
  0%, 59%, 61%, 88%, 90%, 92%, 100% {
    ry: 12px; }
  60%, 89%, 91% {
    ry: 0px; } }
  .fallacy .share {
    position: absolute;
    bottom: 20px;
    right: 20px; }
    .fallacy .share button {
      font-size: 15px;
      color: #42c0bb;
      background: none;
      border: 2px solid #42c0bb; }
      .fallacy .share button:hover, .fallacy .share button:active, .fallacy .share button:focus {
        background: #42c0bb;
        color: #ffefc8; }

@keyframes blink {
  0%, 20%, 100% {
    opacity: 0; }
  40%, 90% {
    opacity: 1; } }

.list {
  flex: 1;
  display: flex;
  flex-direction: column; }
  .list .title {
    position: relative;
    padding: 30px;
    background: #181c4f url(../img/bgpattern1.svg);
    color: #ffefc8;
    font-family: miso, sans-serif;
    text-align: center;
    text-transform: uppercase; }
    .list .title h3 {
      font-size: 40px;
      line-height: 1em;
      color: #8ed2cc; }
    .list .title h1 {
      font-size: 90px;
      line-height: 1.1em;
      color: #ffefc8; }
  .list h2 {
    font-size: 45px;
    margin: 1em; }
  .list .fallacies_container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 0 80px; }
  .list .fallacies {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1.5em;
    max-width: 900px; }
    .list .fallacies a {
      height: 3.7em;
      padding: .8em 1em;
      display: block;
      width: 100%;
      font-size: 16px;
      text-align: center;
      display: flex;
      justify-content: center;
      align-items: center; }

@media (max-width: 1200px) {
  .dialogue .bubble1 {
    font-size: 17px; }
  .dialogue .bubble2 {
    font-size: 24px; }
  .home img {
    width: 18vw; }
  .home .dialogue .bubble2 button {
    font-size: 16px;
    white-space: unset; }
  .fallacy .title h1 {
    margin: 20px 70px 10px;
    font-size: 70px;
    line-height: 0.9em; }
  .fallacy .title h3 {
    font-size: 24px; }
  .fallacy .title .previous_fallacy {
    left: 0; }
  .fallacy .title .next_fallacy {
    right: 0; }
  .fallacy .title a span {
    display: none; }
  .fallacy .title .button {
    padding: 0.5em 1em; }
  .list .title h1 {
    font-size: 70px; }
  .list h2 {
    font-size: 45px;
    margin: 0 0 1em; }
  .list .fallacies_container {
    padding: 30px; } }

@media (max-width: 700px) {
  .list .fallacies {
    grid-template-columns: 1fr;
    grid-gap: .5em; } }

@media (max-width: 500px) {
  .mobile_only {
    display: block; }
  .hide_on_mobile {
    display: none; }
  header h1 span {
    display: none; }
  header nav .show_fallacies_list {
    background: none;
    width: auto;
    white-space: nowrap;
    font-size: 12px; }
  header nav .fallacies_list {
    display: none; }
  header nav .fallacies_list.visible {
    display: block;
    position: fixed;
    top: 60px;
    bottom: 0;
    right: 0; }
  .dialogue {
    display: relative;
    z-index: 10;
    margin: 0; }
    .dialogue .bubble {
      padding: 8px; }
      .dialogue .bubble:after {
        right: calc(100% - 10px);
        width: 20px;
        height: 10px;
        border: 10px solid rgba(0, 0, 0, 0);
        border-bottom: 10px solid #014b7b; }
    .dialogue .bubble1 {
      margin: 0 0 10px;
      font-size: 14px; }
    .dialogue .bubble2 {
      font-size: 16px; }
      .dialogue .bubble2:after {
        left: calc(100% - 10px);
        border-bottom: 10px solid rgba(0, 0, 0, 0);
        border-top: 10px solid #42c0bb; }
  .home img {
    width: 22vw; }
  .home .dialogue .bubble1 {
    font-size: 15px; }
  .home .dialogue .bubble2 button {
    font-size: 12px;
    letter-spacing: normal; }
  .home .dialogue .bubble2 .bubble_links a {
    font-size: 10px; }
  .home .button {
    display: block;
    margin: 20px 0; }
  .home h4 {
    margin: 0 0 1em;
    font-size: 25px;
    line-height: 1.2em; }
  .fallacy .title h1 {
    margin: 20px 20px 10px;
    font-size: 40px; }
  .fallacy .title .previous_fallacy,
  .fallacy .title .next_fallacy {
    border-width: 15px;
    border-right-width: 15px;
    border-left-width: 15px;
    height: 30px; }
  .fallacy .share {
    bottom: 7px;
    right: 7px; }
    .fallacy .share button {
      max-width: 90px;
      font-size: 10px; }
  .list .title h1 {
    font-size: 50px; }
  .list h2 {
    font-size: 25px; } }

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