body {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/background.svg");
  font-family: monospace;
}

#main-head{
  text-align: center;  
  font-size: 40px;
  color: #ffffff;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

#mlscimg{
  width: 55px ;
  height: 50px;

}

#heading{
  text-align: center;  
  font-size: 30px;
  color: #ffffff;
}

#team-heading{
  text-align: center;  
  font-size: 25px; 
  color: #ffffff;
}

#attendes-heading{
  text-align: center;  
  font-size: 25px; 
  color: #ffffff;
}

.img {
  border-radius: 50%;
  width: 200px;
}

.team {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px; 
}

.info{
margin: 0;



}
.name{
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  margin: 0;
}
.position{
  color: #ffffff;
  text-align: center;
  font-size: 20px;
  margin: 0%;
}
@media (max-width: 768px) {
  .team {
      grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .team {
      grid-template-columns: repeat(1, 1fr);
  }
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.attendes{
  display: grid;
  grid-template-columns: repeat(4, 1fr); 
  gap: 50px; 
}

@media (max-width: 768px) {
  .attendes{
      grid-template-columns: repeat(3, 1fr);
  }
}


@media (max-width: 480px) {
  .attendes {
      grid-template-columns: repeat(1, 1fr);
  }
}

