main {
  padding: 16px;
  margin-top: 84px;
  max-width: 1024px;
}

hr {
  margin-block: 16px;
  border: 1px solid transparent;
  border-top: 1px solid #c6c6c6;
}

ol {
  line-height: 2;
}

.button {
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 8px;

  gap: 4px;
  align-items: center;
  display: inline-flex;
  justify-content: center;

  border: 1px solid transparent;
  transition: scale 200ms ease, filter 100ms ease;
}
.button:hover {
  cursor: pointer;
  filter: brightness(1.05);
}
.button:active {
  scale: 0.98;
  filter: brightness(1.05);
}

.button-pdf {
  color: #fff;
  background-color: #d24d77;
}

#email {
  color: #4cabd5;
}
#email:hover {
  cursor: pointer;
  text-decoration: underline;
}