* {
  box-sizing: border-box; }

html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 18px;
  /* rem */
  line-height: 1.5; }

h1 {
  font-size: 2.5rem;
  /* becomes 40px */ }

h2 {
  font-size: 1.5rem;
  /* becomes 30px */ }

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  line-height: 1.2; }

p,
li {
  font-size: 1rem;
  margin: 0.5rem 0; }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

.pulse:not([disabled]) {
  -webkit-animation-name: pulse;
  animation-name: pulse; }

.toolbar {
  position: fixed;
  z-index: 2;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  background-color: #2c2c2c; }
  .toolbar__left {
    display: none; }
  .toolbar__menu {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center; }
  .toolbar__button {
    width: 40px;
    height: 40px;
    background-repeat: no-repeat;
    background-position: center center; }
    .toolbar__button svg {
      opacity: 0.8; }
    .toolbar__button:hover {
      background-color: #2c2c2c; }
      .toolbar__button:hover svg {
        opacity: 1; }
    .toolbar__button:active, .toolbar__button:focus {
      background-color: #18a0fb; }
    .toolbar__button--active {
      background-color: #18a0fb; }
      .toolbar__button--active:hover {
        background-color: #18a0fb; }
      .toolbar__button--active svg {
        opacity: 1; }
  .toolbar__title {
    display: flex;
    flex-direction: row;
    padding-left: 8px; }
    .toolbar__title a {
      color: #fff;
      text-decoration: none; }
  .toolbar__site {
    display: block;
    color: #fff; }
  .toolbar__divider {
    display: none;
    width: 16px;
    height: 24px; }
  .toolbar__page {
    display: none;
    color: #fff; }
  .toolbar__right {
    display: flex;
    align-items: center;
    padding-right: 8px; }
  .toolbar .toolbar__site {
    color: #fff;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.001em; }
  .toolbar .toolbar__page {
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: -0.001em; }
  .toolbar .share-btn {
    color: #fff;
    background-color: #18a0fb;
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    margin-left: 2rem;
    cursor: pointer; }
  .toolbar .mobile-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 14px; }
  @media all and (min-width: 1200px) {
    .toolbar .mobile-nav {
      display: none; } }
  @media all and (min-width: 600px) {
    .toolbar__left {
      display: flex; }
    .toolbar__title {
      display: flex; }
    .toolbar .toolbar__site a {
      color: #aaa; }
    .toolbar__divider {
      display: inline-block; }
    .toolbar__page {
      display: block; } }

