/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BODY */
body {
  background: #0f0f0f;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* SECTION */
.team {
  padding: 60px 20px;
  text-align: center;
}

.team h1 {
  font-size: 2.5rem;
  margin-bottom: 40px;
}

/* CONTAINER */
.team__container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

/* CARD */
.card {
  background: #1a1a1a;
  border-radius: 15px;
  padding: 20px;
  width: 280px;
  transition: 0.3s;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.card:hover {
  transform: translateY(-10px);
}

/* IMAGE */
.card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

/* TEXT */
.card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 15px;
}

/* SOCIAL */
.socials a {
  margin: 0 8px;
  text-decoration: none;
  color: hsl(211 82% 31%);
  font-weight: bold;
  transition: 0.3s;
}

.socials a:hover {
  color: #fff;
}