p {
  text-align: left;
}

.content h2 {
  text-align: center;
  animation: fadeIn 0.6s ease-out forwards;
}

h2 {
  padding-top: 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

body {
  font-family: 'AR One Sans';
  background-color: #ffffff;
  color: #000000;
  line-height: 1.4;
  padding-left: 15%;
  padding-right: 15%;
  scroll-behavior: smooth;
}

header {
  background-color: #4d1979;
  color: white;
  padding: 10px 20px;
  text-align: center;
  background: linear-gradient(135deg, #4d1979, #7c33a6);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

header a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  transition: opacity 0.3s;
}

header a:hover {
  opacity: 0.7;
}

h1,
p {
  color: #ffffff;
}

.team {
  margin-top: 40px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.team-member {
  flex: 1;
  margin: 10px;
  text-align: center;
  transition: transform 0.3s;
}

.team-member img {
  width: 137px;
  height: 137px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: scale(1.05);
}

.team-member:hover img {
  transform: scale(1.1);
}

.team-member {
  transition: transform 0.3s, opacity 0.3s;
}

.team-member:hover {
  transform: translateY(-5px);
  opacity: 0.9;
}

.documentation {
  margin-top: 40px;
}

.documentation-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 100px);
  gap: 10px;
  padding: 20px;
}

.buttons {
  font-family: 'AR One Sans';
  text-align: center;
  margin-top: 23px;
}

.btn {
  font-family: 'AR One Sans';
  background-color: #f0f0f0;
  border: 1px solid #ccc;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center; 
  text-align: center;
}

.intro {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.intro p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.6;
  color:#000000;
}

