/* Credits Page */

.members_container {
  display: block;

  margin-top: 10em;
  margin-bottom: 3em;

  width: 100%;
  user-select: none;
}

.members_container h1 {
  margin-right: auto;
  margin-left: auto;

  width: 70%;

  letter-spacing: 0.05em;
}

.members_container img {
  display: block;
  border-radius: 100%;

  width: 100px;
  height: 100px;
}

.members_container a {
  text-decoration: none;
  color: #dfc298;
}

.members_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3em;

  width: 70%;

  margin-top: 3em;
  margin-bottom: 3em;
  margin-right: auto;
  margin-left: auto;
}

.members_entry {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  position: relative;
}

.members_name {
  color: #c0904e;
  font-weight: 600;
  margin-top: 0.8em;
  letter-spacing: 0.02em;
}

/* Hover Box */

.members_info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;

  width: 100%;
  height: 100%;

  font-weight: 600;
  letter-spacing: 0.02em;
  background-color: black;
  opacity: 0;

  transition:
    opacity 0.2s ease-in-out,
    transform 0.2s ease-in-out;
}

.members_info p {
  margin-bottom: 0.5em;
}

.members_info:hover {
  opacity: 1;
}
