body {
  font-family: "Rubik", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.1;
  margin: 50px 200px;
}

@media (max-width: 768px) {
  body {
    margin: 20px;
    font-size: 16px;
  }
}

p {
  color: #0c1740;
  font-weight: 300;
  font-size: 15px;
  margin-bottom: 1em;
}

header {
  margin: 0;
  padding: 0;
  font-size: 15px;
}

@media (max-width: 768px) {
  header {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 16px;
  }
}

header small {
  color: #8991b0;
  font-weight: 300;
}

h1 {
  margin: 50px 0 25px;
  font-size: 30px;
  font-weight: 400;
}

@media (max-width: 768px) {
  h1 {
    margin: 30px 0 20px;
    font-size: 24px;
    text-align: center;
  }
}

ul {
  color: #0c1740;
  margin: 0;
  padding: 0;
  list-style: none;
}

ul li {
  margin-bottom: 12.5px;
}

ul li a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
  font-size: 15px;
}

@media (max-width: 768px) {
  ul li a {
    display: block;
    line-height: 1.4;
  }
}

ul li a i {
  font-size: 1rem;
  margin-right: 8px;
  vertical-align: middle;
  line-height: 1;
  min-width: 20px;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: blue;
}

a span.description {
  display: inline;
  color: #0c1740;
  font-weight: 300;
}

.links {
  position: fixed;
  top: 1rem;
  right: 2rem;
  font-weight: 400;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: transparent;
  z-index: 1000;
}

@media (max-width: 768px) {
  .links {
    position: static;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

.links a {
  text-decoration: none;
  color: #8991b0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.links a i {
  color: #8991b0;
  font-size: 1.1rem;
  vertical-align: middle;
}

.divider {
  color: #8991b0;
  user-select: none;
  pointer-events: none;
}

.note {
  margin-top: 20px;
  font-size: 13px;
  color: #8991b0;
  font-weight: 300;
}