body {
  background-color: black;
  font-family: 'Poppins', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

/* Info card */
.card {
  background-color: white;
  max-width: 750px;
  padding: 24px;
  border-radius: 16px;

  /* Extra property */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease;
}

/* Hover effect (extra property) */
.card:hover {
  transform: translateY(-5px);
}

.card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 16px;
}

h1 {
  margin: 0;
  color: darkblue;
}

.email {
  color: gray;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.info {
  background-color: white;
  padding: 16px;
  border-radius: 12px;
}

.info p {
  margin: 8px 0;
}