/* Reset de estilos */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Estilos globales */
body {
  font-family: Arial, sans-serif;
  background-color: #f3f3f3;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Estilos de encabezado */
header {
  text-align: center;
  padding: 30px 0;
}

h1 {
  font-size: 48px;
  color: #333;
  margin-bottom: 10px;
}

.back-link {
  text-decoration: none;
  color: #007bff;
  font-size: 18px;
}

.back-link:hover {
  color: #0056b3;
}

/* Estilos del contenido principal */
.main {
  display: flex;
  justify-content: center;
}

.moderators-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.moderator {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  margin: 20px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.moderator:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.2);
}

.moderator h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.moderator:hover h3 {
  color: #007bff;
}

.moderator p {
  font-size: 18px;
  color: #666;
  margin-bottom: 5px;
}

/* Estilos para las imágenes de los usuarios */
.moderator-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin-bottom: 10px;
}
