* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  background-color: black;
}

main {
  height: 100%;
  width: 100%;
  background-color: black;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 2rem;
  transition: all 4s ease-in-out;
}
main .card {
  width: 260px;
  height: 350px;
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  font-family: Arial, Helvetica, sans-serif;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
main .card img {
  width: 150px;
  height: 150px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}
main .card h3 {
  font-size: 1.4rem;
  white-space: nowrap;
  margin-bottom: 0.8rem;
}
main .card h4 {
  font-size: 1rem;
  color: crimson;
  margin-bottom: 0.8rem;
}
main .card p {
  font-size: 0.8rem;
}
main .card:hover {
  transform: scale(1.05);
  /* scale(0.9);  perfect small zoom */
  box-shadow: 8px 8px 15px rgba(255, 255, 255, 0.4);
}/*# sourceMappingURL=style.css.map */