.card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(201, 201, 201, 0.5);
  border-radius: 10px;
  box-shadow: inset 5px 5px 10px rgba(0, 0, 0, 0.25),
    inset -5px -5px 10px rgba(0, 0, 0, 0.25),
    inset -5px 5px 10px rgba(0, 0, 0, 0.25),
    inset 5px -5px 10px rgba(0, 0, 0, 0.25),
    0px 0px 15px rgba(100, 150, 255, 0.3);
}

.card h3 {
  margin-top: 0rem;
}

.card-img-container {
  display: flex;
  justify-content: center;
  padding: 1rem;
}

.card-img {
  padding: 0.4rem;
  height: 6rem;
  width: auto;
  background-color: rgba(100, 170, 255, 0.7);
  max-width: 6rem;
  max-height: 6rem;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.5);
  box-shadow: 8px 8px 18px rgba(0, 0, 0, 0.5);
}

.card-text {
  text-align: center;
  flex-grow: 1;
  color: #fff;
}
