/* colors */
.theme-extra {
  --primary-color: #375E9E;
  --secondary-color: #CA0040;
  --tertiary-color: #003DA5;
}

/* headings */
body.theme-extra main h1,
body.theme-extra main h2,
body.theme-extra main h3,
body.theme-extra main h4,
body.theme-extra main h5,
body.theme-extra main h6 {
  color: var(--black); 
  font-weight: bold;
  line-height: 1;
}

/* buttons */
.theme-extra main a.button.primary,
.theme-extra main button.primary {
  padding: .85rem 1.875rem .65rem;
}

.theme-extra main a.button.secondary,
.theme-extra main button.secondary {
  background-color: var(--white);
  color: var(--primary-color);
  padding: .85rem 1.875rem .65rem;
  box-shadow: 0.2rem 0.2rem 1rem rgba(0 0 0 / 15%);
  border: 0;
}

.theme-extra main a.button.secondary:hover,
.theme-extra main button.secondary:hover,
.theme-extra main a.button.secondary:focus,
.theme-extra main button.secondary:focus {
  background-color: var(--white);
  color: var(--secondary-color);
}
