:root {
  scroll-behavior: smooth;
}

body {
  font-family: "Merriweather", serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ece7de;
}

header,
main,
footer {
  width: 650px;
  margin: 0 auto;
  padding: 1em;
}

header > #name > h1 {
  text-align: center;
  font-size: 2em;
}

a {
  color: darkblue;
  &:hover {
    text-decoration: double underline;
  }
}

nav > ul {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0;
  li {
    display: contents;
  }
  li + li::before {
    content: "|";
  }
}

main > section {
  padding: 1em 0;
}

#worship {
  margin: 0 auto;
  text-align: center;
  ul {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 0;
    list-style-type: none;
    gap: 1em;
    li {
      flex: 1;
    }
  }
}

#staff .staff-member {
  display: grid;
  margin-bottom: 1em;
  grid-template-columns: 150px 1fr;
  gap: 2em;
}

.staff-member img {
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  margin-top: 2em;
  width: 100%;
  aspect-ratio: 1;
}
