@charset "UTF-8";
@font-face {
  font-family: "Pinyon Script";
  font-style: normal;
  font-weight: 400;
  src: local(""), url("./assets/fonts/pinyon-script-v17-latin-ext_latin-regular.woff2") format("woff2"), url("./assets/fonts/pinyon-script-v17-latin-ext_latin-regular.woff") format("woff");
}
@font-face {
  font-family: "Josefin Sans";
  font-style: normal;
  font-weight: 100 700;
  src: local(""), url("./assets/fonts/josefin-sans-v25-latin-ext_latin-regular.woff2") format("woff2"), url("./assets/fonts/josefin-sans-v25-latin-ext_latin-regular.woff") format("woff");
}
html {
  height: 100%;
}

body {
  padding: 2rem;
  margin: 0;
  font-family: "Josefin Sans";
  background-color: #efe6ee;
  font-size: 200%;
  line-height: 1.4em;
  position: relative;
}
@media (max-height: 1024px) {
  body {
    font-size: 175%;
  }
}
@media (max-height: 768px) {
  body {
    font-size: 150%;
  }
}
@media print {
  body {
    font-size: 100%;
  }
}
body.center {
  text-align: center;
  font-size: 300%;
}
body.floral {
  background-image: url("/Floral.png");
  background-attachment: fixed;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-size: 10rem;
}
@media print {
  body.floral {
    background: none;
  }
}

main {
  display: flex;
  min-height: calc(100vh - 1.4em - 4rem);
}

.content {
  margin: auto;
}

h1,
h2,
h3,
h4 {
  font-family: "Pinyon Script";
  color: #b17f65;
}

a {
  color: #cba998;
}
a:hover {
  color: #b17f65;
}
a.active {
  text-decoration-line: none;
}
a[target=_blank]::before {
  content: "↬ ";
}

li::marker {
  content: "⚭ ";
  color: #b17f65;
}

nav {
  position: sticky;
  top: 0;
  margin: -2rem -2rem 0 -2rem;
  padding: 1rem 0;
  text-align: center;
  width: inherit;
  background-color: white;
  outline: 2px solid #efe6ee;
  outline-offset: -6px;
}
nav a {
  padding-right: 1rem;
}
@media print {
  nav {
    display: none;
  }
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}

.gallery-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(1, 8em);
  gap: 1em;
}
.gallery-3 img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.scroll-to-top {
  position: absolute;
  inset: 5rem 0.5rem 0 auto;
  pointer-events: none;
}
.scroll-to-top a {
  position: sticky;
  top: -2.5rem;
  font-size: xx-large;
  transform: translateY(100vh);
  display: inline-block;
  pointer-events: all;
}
@media print {
  .scroll-to-top {
    display: none;
  }
}

span[title] {
  text-decoration: underline wavy #cba998;
}

svg text {
  font-size: 175% !important;
}

/*# sourceMappingURL=style.css.map */