body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 800px;
  margin: 50px auto;
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

header h1 {
  margin-bottom: 10px;
  color: #2c3e50;
}

.profile-img {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin: 20px 0;
  border: 5px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.content {
  margin-top: 20px;
}

.contact {
  margin-top: 20px;
}

.profiles {
  margin-top: 20px;
}

.contact a,
.profiles a {
  color: #2c3e50;
  text-decoration: none;
}

.contact a:hover,
.profiles a:hover {
  text-decoration: underline;
}

footer {
  margin-top: 40px;
  font-size: 0.9em;
  color: #777;
}
