/* base */
:root {
  --page-animation-delay: 0.5s;
}

body,
body * {
  box-sizing: border-box;
}

p:last-child {
  margin: 0;
}

a {
  color: var(--link-color);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover-color);
}

/* pdf-link-field */
.pdf-link-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdf-link-field:before {
  content: "";
  display: block;
  background: url(img/pdf_icon.svg) no-repeat center center transparent;
  width: 17px;
  height: 20px;
}

footer .pdf-link-field {
  margin-top: 10px;
}
