body {
  background-color: #202020;
  font-family: Helvetica, Arial, sans-serif;
  color: #d1d1d1;
  margin: 0;
}

h1 {
  font-weight: normal;
  padding-left: 25%;
}

p {
  overflow-wrap: break-word;
  padding-left: 50px;
}

ol, ul {
  padding-left: 100px;
}

a {
  color: #569cd6;
  text-decoration: none;
  position: relative;
}

a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 0;
  height: 2px;
  background-color: #9cdcfe;
  transition: width 0.2s ease-out;
}

a:hover::after {
  width: 100%;
}