body {
  background-color: #ffe3f8;
  font-family: "Inter", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}

header {
  padding: 1em 0.5em;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

nav {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: end;
}

nav img {
  margin-top: 3px;
  width: 1.5em;
  height: auto;
}

footer {
  margin: 4em 0;
}

@media (max-width: 600px) {
  header {
    justify-content: center;
  }

  h2, h3 {
    text-align: center;
  }

  nav {
    margin-top: 1em;
    width: 100%;
  }
}

@media (min-width: 601px) {
}

nav a {
  margin-left: 1em;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
}

nav a:hover, nav a.selected {
  background: linear-gradient(180deg,rgba(255,255,255,0) 50%, #E3FFEA 50%);
}

.content {
  max-width: 42em;
  margin: 1em auto;

  img {
    max-width: 100%;
  }
}

.highlight {
  background: linear-gradient(180deg,rgba(255,255,255,0) 50%, #E3FFEA 50%);
}

/** LAYOUT **/

.align-center {
  display: flex;
  justify-content: center;
}

.mb-1 {
  margin-bottom: 1em;
}

.mb-2 {
  margin-bottom: 2em;
}

.mb-3 {
  margin-bottom: 3em;
}

/** IMAGES **/

img.grayscale {
  filter: grayscale(100%);
}

img.grayscale-70 {
  filter: grayscale(70%);
}

/** HEADINGS **/

h2 {
  font-size: 3em;
  text-transform: uppercase;
  margin-bottom: 1em;
}

h3 {
  font-size: 2em;
  margin-top: 1.5em;
  text-transform: uppercase;
}

h4 {
  font-size: 1.75em;
  margin-top: 1.5em;
  text-transform: uppercase;
}

/** BODY TEXT **/

p {
  line-height: 1.8rem;
  font-size: 1.2rem;
  overflow-wrap: break-word;
}

p.lead {
  text-transform: uppercase;
}

p a {
  color: #5e86ff;
  text-decoration: underline;
}

p a:hover {
  color: #0b48ff;
}

p a:visited {
  color: #a71fff;
}

img.flyer {
  max-height: 640px;
  margin: 1.5em auto;
  border-radius: 0.5em;
}

/** Google Maps Embed **/
.google-map {
  padding-bottom: 75%;
  position: relative;
}

.google-map iframe {
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  position: absolute;
}