@import url("https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap");

* {
  box-sizing: border-box;
}

body {
  font-family: "GoogleSansFlex", sans-serif;
  margin: 0;
  padding: 1rem 7rem;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8f5f0;
  color: #2f2f2f;
}


h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  font-weight: 900;
}

h1 {
  font-size: 2.5rem;
}

a {
  font-style: italic;
  text-decoration: none;
  color: rgb(28, 45, 143);
  transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
  color: purple;
}

a i {
  margin-right: 0.5rem;
}

.site-footer {
  margin-top: auto;
  border-top: 1px solid #e2e2e2;
  display: flex;
  flex-direction: column;
}

.site-footer h2 {
  font-size: 1.25rem;
}

.footer-note {
  text-align: center;
  font-size: 0.8rem;
  color: #666666;
}
