body {
  margin: 0;
  padding: 0;
  font-family: Arial, Helvetica, sans-serif;
  text-align: center;
}

.container {
  max-width: 900px;
  margin: 50px auto;
  padding: 20px;
}

.about {
  line-height: 1.5;
}

.button-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin: 2rem;
}

.button-container button {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.5s;
}

.praxly-button {
  background-color: #2b5e7d;
  color: white;
  padding: 10px 20px;
}

.praxly-button:hover {
  background-color: #1a3f56;
}

.github-button {
  padding: 10px 20px;
}

.github-button button {
  background-color: lightgray;
  color: black;
}

.github-button:hover {
  background-color: darkgray;
}

.report-button {
  padding: 10px;
  padding-right: 30px;
  padding-left: 15px;
}

.report-button:hover {
  background-color: darkgray;
}

.footer {
  align-items: center;
  display: flex;
  margin: 2rem;
}

.logo {
  height: 100px;
  width: auto;
  margin-right: 1rem;
}

.nsf-ack {
  flex: 1;
  line-height: 1.5;
}

.report-button .material-symbols-rounded.bug {
  font-size: 20px;
  position: absolute;
  transform: rotate(-45deg);
  transition: transform 1s ease-in-out;
  margin-left: 2px;
  margin-top: -2px;
}

.report-button:hover .bug,
.report-button .bug:hover {
  transform: rotate(315deg);
}

h2 {
    margin-top: 2rem;
}

.people-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 900px;
}

.team-member .member {
  flex: 0 1 30%;
  max-width: 100%;
  border-radius: 50%;
  height: 200px;
  width: 200px;
  padding: 15px;
  object-fit: cover;
}

.team-member h3 {
  margin: 0 0 15px;
}

.member-description {
  display: none;
  text-align: center;
}

.people-container.active .member-description {
  display: block;
}

.learn-more {
  background: transparent;
  border: none;
  text-decoration: underline;
  border-radius: 0.2em;
  font-size: 15px;
  padding-top: 15px;
}

.learn-more:hover {
  background-color: rgb(203, 203, 203);
}
