body {
  background-color: #f3f4f6;
  font-family: Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card {
  background: white;
  padding: 20px;
  border-radius: 12px;
  border: 1px solid #4b5563;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  text-align: center;
  width: 90%;
  max-width: 300px;
  box-sizing: border-box;
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin-bottom: 15px;
  object-fit: cover;
}

.item {
  color: #555;
  font-size: 14px;
  margin-top: 8px;
}

a {
  color: #2563eb;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.info {
  text-align: left;
}

@media (max-width: 480px) {
  .card {
    width: 92%;
    max-width: none;
    padding: 28px 20px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
  }

  .card img {
    width: 110px;
    height: 110px;
  }

  .item {
    font-size: 15px;
  }
}
