@import url("https://fonts.googleapis.com/css2?family=Mulish&display=swap");

* {
  padding: 0;
  margin: 0;
}

body {
  background-color: white;
  font-family: 'Mulish', sans-serif;
}

h1{
  text-align: center;
  font-size: 40px;
  
}

.intro{
  text-align:  center;
}

/* TEAM */
.container {
  margin: 20px 40px;
  color: black;
}

.heading {
  font-size: 50px;
  color: black;
  
}

.heading span {
  font-style: italic;
  font-size: 30px;
}

.profiles {
  display: flex;
  justify-content: space-around;
  margin: 20px 80px;
}

.profile {
  flex-basis: 260px;
}

.profile .profile-img {
  height: 260px;
  width: 260px;
  border-radius: 50%;
  
  cursor: pointer;
  transition: 400ms;
}

.profile:hover .profile-img {
  filter: grayscale(100);
}

.user-name {
  margin-top: 30px;
  font-size: 20px;
}

.profile h5 {
  font-size: 18px;
  font-weight: 100;
  letter-spacing: 3px;
  color: blueviolet;
}

.profile p {
  font-size: 14px;
  margin-top: 20px;
  text-align: justify;
}

@media only screen and (max-width: 1150px) {
  .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;
  }
}

@media only screen and (max-width: 900px) {
  .heading {
    font-size: 40px;
    color: black;
    text-align: center;
  }

  .heading span {
    font-size: 13px;
  }

  .profiles {
    margin: 20px 0;
  }

  .profile p {
    margin: 20px 10px 80px 10px;
  }
}
