:root {
  --color-primary: #fdfbf8;
  --color-secondary: #fdf6f0;
  --color-accent: #7f2549;
  --color-accent-2: #700e37;
  --border: 1px solid var(--color-accent);
  
  
}
/* fonts */
@font-face {
  font-family: "Philosopher";
  src: url(/templates/06/fonts/Philosopher-Bold.woff2) format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Alike";
  src: url(/templates/06/fonts/Alike-Regular.woff2) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Alike";
  font-weight: normal;
  font-style: normal;
  background-color: var(--color-primary);
  color: #090909;
}
.accent-font {
  font-family: "Philosopher";
  font-weight: bold;
  font-style: normal;
}
.accent-color {
  color: var(--color-accent);
}
.skip-link {
  position: absolute;
  top: -3rem;
  left: 0;
  padding: 0.5rem;
  background: white;
  color: black;
  z-index: 99;
}
.skip-link:focus {
  top: 1rem;
  left: 1rem;
}
a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
.btn {
  text-decoration: none;
}
:is(a, button, .btn):not(:focus-visible),
.focus-style-over-dark :is(a, button):not(:focus-visible) {
  box-shadow: none;
  outline: none;
}

:is(a, button, .btn):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

:is(a, button).focus-style-over-dark:focus-visible,
.focus-style-over-dark :is(a, button):focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: none;
}

:is(a, button).focus-style-over-light:focus-visible,
.focus-style-over-light :is(a, button):focus-visible {
  outline: 3px solid #c84600;
  outline-offset: 2px;
  box-shadow: none;
}
.padding-section {
  padding-top: 6rem;
  padding-bottom: 6rem;
}
.padding-top {
  padding-top: 6rem;
}
.padding-bottom {
  padding-bottom: 6rem;
}
.action-btn {
  min-width: 15rem;
  background-color: var(--color-accent);
  color: white;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.action-btn:hover,
.actiob-btn:focus {
  background-color: var(--color-accent-2);
  color: white;
}
.contact-email {
  word-break: break-word;
  overflow-wrap: anywhere;
}
h2 {
  font-size: 2.8rem;
}
@media (max-width: 575.98px) {
  .padding-section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
  .padding-top {
    padding-top: 4rem;
  }
  .padding-bottom {
    padding-bottom: 4rem;
  }
}
