
body {
  margin: 0;
  padding: 0;
  background: #ffffff;
  font-family: 'Segoe UI', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  text-align: center;
}

.id-card {
  width: 320px;
  transition: transform 0.3s ease;
}

.id-card:hover {
  transform: scale(1.1);
}

.contact {
  margin-top: 20px;
  font-size: 1rem;
  color: #222;
}
