body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Mercury Text G1 A", "Mercury Text G1 B", "Georgia";
  font-style: normal;
  font-weight: 300;
  background-color: #a06228;
  color: white;
  width: 100%;
}

.winter-spring {
  background-color: #828e8b;
}

body, header, nav {
  min-height: 100vh;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all ease-out 250ms;
}

img {
  max-width: 100%;
  display: block;
}

header, main, nav, footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

header {
  text-align: center;
}

.logo {
  width: clamp(100px, 50%, 20vw);
  margin: 1em;
}
.logo .logo-background-fill-space-around-leaf {
  fill: #784628;
}
.winter-spring .logo .logo-background-fill-space-around-leaf {
  fill: #515957;
}

.title {
  margin: 0;
  font-family: "Operator A", "Operator B";
  font-size: clamp(1.75em, 5vw * 1.5, 4em);
  line-height: 1.25;
  font-style: normal;
  font-weight: 700;
}

.subtitle {
  margin: 0;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(0.5em, 5vw * 0.5, 0.8em);
  font-family: "Mercury Text G1 A", "Mercury Text G1 B", "Georgia";
}

main {
  width: 800px;
  max-width: 100%;
  padding: clamp(1em, 5vw * 2, 2.25em);
  box-sizing: border-box;
  font-size: clamp(1em, 5vw * 2, 2em);
}

hr {
  border-top: 0.15em solid #f2f2f2;
  border-radius: 0.25em;
  width: 100%;
  margin-top: 2em;
  margin-bottom: 2em;
}

.text-block {
  background-color: #784628;
  border-radius: 1em;
  padding: 2em;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.winter-spring .text-block {
  background-color: #515957;
}

h2 {
  text-align: center;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(1.2em, 5vw * 2, 2em);
  margin-bottom: 0.25em;
  font-family: "Operator A", "Operator B";
}

.rotating-image {
  background-image: url(/img/family.jpeg);
  background-size: cover;
  height: 20em;
}

.contact-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-detail-container {
  margin-bottom: -1em;
  display: flex;
  flex-direction: row;
  font-size: clamp(16pt, 5vw * 1, 1em);
}

.contact-detail-icon {
  margin-right: 1em;
}

.copyright {
  font-size: 12pt;
  text-align: center;
}

@media (max-width: 400px) {
  header {
    margin-top: -4em;
  }

  main {
    padding: 1em;
  }

  .text-block {
    border-radius: 0.5em;
    padding: 1em;
    font-size: 5.5vw;
  }
}
