
* {
  padding: 0;
  margin: 0;
}

.container {
  margin: 20px 40px;
  color: white;
}


.teamtext {
  margin: 20px 40px;
  color: white;
}


.heading {
  font-size: 60px;
  color: white;
}

.heading span {
  /* font-style: italic; */
  font-size: 30px;
}

.profiles {
  display: flex;
  justify-content: space-around;
  margin: 20px 80px;
  justify-content: center; /* horizontally centers items */
}

.profile {
  flex-basis: 260px;
}

.profile .profile-img {
  height: 260px;
  width: 260px;
  margin: 4px 4px;
  margin-right: 10px;
  /* border-radius: 50%; */
  /* filter: grayscale(100%); */
  /* cursor: pointer; */
  /* transition: 200ms; */
}

.profile .signup-img {
  height: 290px;
  width: 800px;
}

/*
.profile:hover .profile-img {
  filter: grayscale(0);
}
*/

.user-name {
  /*
  margin-top: 30px;
  margin: 16px 4px;
  */
  font-size: 30px;
  text-align: center;
}

.user-name h3 {
  /*
  margin-top: 30px;
  margin: 16px 4px;
  */
  font-weight: bold;
  font-size: 40px;
  text-align: center;
}

.profile h3 {
  font-size: 22px;
  font-weight: 100;
  letter-spacing: 3px;
  text-align: center;
  color: white;
}

.profile h5 {
  font-size: 22px;
  font-weight: 100;
  letter-spacing: 3px;
  text-align: center;
  color:white;
}

.profile p {
  color:white;
  font-size: 16px;
  margin-top: 20px;
  text-align: center;
  margin-left: 20px;
}


.columnteam {
  font-size: 56px;
  color: rgb(255, 255, 255);
  justify-content: center;
  margin-top: 0px;
  text-align: center;
}


.style-team{
  padding-top: 120px;

}



@media only screen and (max-width: 768px) {
  .heading {
    font-size: 40px;
    color: white;
    text-align: center;
  }

  .heading span {
    font-size: 15px;
  }

  .profiles {
    margin: 20px 0;

  }

  .profile p {
    margin: 20px 10px 80px 10px;
  }
}

@media only screen and (max-width: 1200px) {
  .profiles {
    flex-direction: column;
    
  }

  .profile {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .profile p {
    text-align: center;
    margin: 20px 60px 80px 60px;
    font-size: 20px;
  }



}

