@import url('https://fonts.googleapis.com/css2?family=Pirata+One&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  height: 100%;
  animation: fadeIn 1.5s ease-out forwards;
  background-color: #0a0a0a;
  color: #ffffff;
  overflow-x: hidden;
}

header {
  font-family: "Pirata One", Roboto, Arial;
  width: 100%;
  background-color: #111;
  padding: 1rem 2rem;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 2px;
}
a:link,
a:visited {
  color: whitesmoke;
  text-decoration: none;
}

a:hover {
  color: red;
  transition: color 0.3s;
}
.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-items: center;
}
@media (max-width: 768px) {
  .members-grid {
    grid-template-columns: 1fr;
  }
}

.member-card {
  width: 100%;
  max-width: 280px;
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  transition: box-shadow 0.2s;
}

.member-card:hover {
  box-shadow: 0 0 20px rgba(255, 0, 0, 0.6);
}

.member-card img {
  width: 100%;
  display: block;
  transition: opacity 0.3s;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.member-card h3 {
  font-family: "Roboto", sans-serif;
  margin: 0.5rem 0;
  font-size: 1.5rem;
}

.member-card p {
  margin: 0.2rem 0 0.5rem 0;
  font-size: 0.5rem;
}

.member-card a {
  display: inline-block;
  margin: 0.5rem;
  padding: 0.5rem;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  line-height: 1;
}

.member-card a:hover {
  background-color: red;
}

footer {
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
  color: #aaa;
}

footer a:link,
footer a:visited {
  color: whitesmoke;
  text-decoration: none;
}

footer a:hover {
  color: red;
  transition: color 0.3s;
}

.footnote {
  position: fixed;
  bottom: 10px;
  left: 10px;
  color: #888;
  font-size: 0.85rem;
  opacity: 0.8;
}

.footnote a:link,
.footnote a:visited {
  color: #888;
  text-decoration: none;
}

.footnote a:hover {
  color: red;
  transition: color 0.3s;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
