body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  margin: 0;
}

header {
  display: flex;
  flex-direction: column;
}

nav {
  display: flex;
  justify-content: space-around;
  background-color: #555;
  padding: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  width: 100%;
  position: fixed;
  top: 0;
}

nav a {
  color: white;
  padding: 0.5rem 1rem;
}

nav a:hover {
  background-color: #777;
  border-radius: 10rem;
}

#page-name {
  margin-top: 5rem;
  color: #333;
  padding-left: 2rem;
  font-size: 5rem;
  margin-bottom: 2rem;
}

h2 {
  padding-left: 2rem;
  font-size: 4rem;
  margin-top: 1rem;
  color: #333;
}

#about-me {
  padding-top: 0%;
  color: #333;
  padding-left: 2rem;
  padding-right: 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  width: 100%;
}

figure {
  display: flex;
  flex-direction: column;
}

figcaption {
  font-size: 1rem;
}

figure img {
  border-radius: 10rem;
}

@media (max-width: 850px) {
  .hide-on-mobile {
    display: none;
  }
}

#about-me p {
  padding-left: 1.5rem;
  font-size: 2rem;
}

#partners-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1ch;
  width: 100%;
  place-items: center;
}

#partners-gallery img:hover {
  transform: scale(1.02);
}

#quotes {
  display: flex;
  flex-direction: column;
  padding-right: 10rem;
  margin-top: 2rem;
  margin-bottom: 5rem;
}

#quotes h2 {
  padding-top: 2rem;
}

#quotes blockquote {
  gap: 2ch;
  width: 100%;
  background-color: #f0ecec;
  margin-right: 5rem;
  font-size: 1.5rem;
  border-radius: 10rem;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 2rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

#quotes blockquote:hover {
  transform: scale(1.02);
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 1rem;
  display: flex;
  justify-content: center;
  background-color: #555;
  color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
}
