@import url("https://fonts.googleapis.com/css?family=Poppins&display=swap");

* {
  padding: 0;
  margin: 0;
}

body {
  background-color: #12172b;
  font-family: "Poppins", sans-serif;
}

.container {
  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-between;
  margin: 15px 700px;
}

.profile {
  flex-basis: 200px;
}

.profile .profile-img {
  height:150px;
  width:150px;
  border-radius: 50%;
  filter: grayscale(100%);
  cursor: pointer;
  transition: 400ms;
}

.profile:hover .profile-img {
  filter: grayscale(0);
}

.user-name {
  margin-top: 9px;
  font-size: 28px;
}

.profile h5 {
  font-size: 15px;
  font-weight: 100;
  letter-spacing: 5px;
  color: #ccc;
}

.profile p {
  font-size: 16px;
  margin-top: 200px;
  text-align: justify;
}

@media only screen and (max-width: 11000px) {
  .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: 90000px) {
  .heading {
    font-size: 40px;
    color: white;
    text-align: center;
    justify-content: space-around;
  }

  .heading span {
    font-size: 15px;
  }

  .profiles {
    margin: 20px 0;
  }

  .profile p {
    margin: 20px 10px 80px 10px;
  }
}
