h1, h2, h3, h4, h5, h6, blockquote, caption, figcaption, p {
  text-wrap: pretty;
}

body {
  font-family: var(--wp--preset--font-family--sans);
  font-weight: 400;
  scroll-behavior: smooth;
  background-color: var(--wp--preset--color--light);
  color: var(--wp--preset--color--dark);
}

a:hover,
a:focus {
  color: var(--wp--preset--color--light-orange);
  transition: color 0.5s ease;
}

.wp-block-navigation a {
  position: relative;
  text-decoration: none;
  transition: color 0.5s ease;
}
.wp-block-navigation a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 2px;
  background-color: currentColor;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.wp-block-navigation a:hover::after, .wp-block-navigation a:focus::after {
  opacity: 1;
}

.wp-block-button__link {
  transition: background-color 0.5s ease, box-shadow 0.5s ease, transform 0.5s ease;
}
.wp-block-button__link:hover {
  background-color: var(--wp--preset--color--blue);
  color: var(--wp--preset--color--white);
  box-shadow: 0px 0px 15px rgba(39, 41, 40, 0.3);
  transform: scale(1.03);
}

.more-link {
  display: block;
}

.wp-block-table.is-style-stripes thead {
  background: var(--wp--preset--color--blue);
  color: var(--wp--preset--color--white);
}

.wp-block-separator.has-background:not(.is-style-dots) {
  height: 2px;
}/*# sourceMappingURL=custom.css.map */