.main-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  row-gap: 50px;
  column-gap: 25px;
  margin: 0 20px;
}

@media (max-width: 418px) {
  .main-grid {
    grid-template-columns: 1fr;
  }
}

.link {
  color: white;
  text-decoration: none;
}

.profile-grid {
  padding: 0;
  margin: 0;
  display: grid;
  justify-items: center;
  border: 1px solid white;
  background-color: rgb(78, 74, 117);
  cursor: default;
  transition: background-color 0.3s, color 0.3s, text-shadow 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.profile-grid:hover {
  background-color: white;
  box-shadow: 0 0 10px rgba(255, 255, 255, 1)
}

.profile-grid:hover .details {
  color: rgb(78, 74, 117);
  text-shadow: 0 0 3px rgba(78, 74, 117, 0.3);
}

.profile-grid:hover .profile-img {
  box-shadow: 0 0 10px rgba(78, 74, 117, 1);
}

.profile-img-container {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 7px;
  justify-content: center;
  align-items: center;
}

.profile-img {
  height: 150px;
  border-radius: 75px;
  box-shadow: 0 0 7px rgba(255, 255, 255, .3);
}

.detail-container {
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}

.details {
  padding: 0;
  margin: 0;
}