body {
  font-family: 'Special Elite', monospace;
  background-color: #f3f3f3;
  margin: 0;
  padding: 20px;
  display: flex;
  justify-content: center;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px;
  box-sizing: border-box;
}

.profile-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.card-content {
  flex: 1;
}

h1 {
  margin: 0 0 8px;
  font-size: 24px;
}

h2 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #777;
}

p {
  margin: 6px 0;
}

.contact p {
  margin: 4px 0;
}

/* Responsywność */
@media (max-width: 600px) {
  .card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .profile-img {
    width: 120px;
    height: 120px;
  }

  .card-content {
    padding-top: 10px;
  }
}
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}