* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*Magic card*/
.card {
  margin-top: 8%;
  width: 300px;
  height: 550px;
  background: #f5f5f5;
  overflow: visible;
  box-shadow: 0 5px 20px 2px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 0.5%;
}

.card b {
  font-size: 2em;
}

.card-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em;
  padding: 0 1rem;
}

.card-img {
  --size: 200px;
  border-radius: 50%;
  width: var(--size);
  height: var(--size);
}

.text-body {
  font-size: 1.2rem;
  text-align: center;
  color: #6f6d78;
  font-weight: 400;
  font-style: italic;
}
