body {
  font-family: Arial, sans-serif;
  margin: 40px;
  background-color: #f2f2f2;
  color: #191919;
}

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

h1 {
  color: #504DEE;
  margin-bottom: 10px;
}

.profile-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top 20%;
  margin: 2% auto;
  border: 3px solid #504DEE;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
img {
  max-width: 100%;
  height: auto;
}

h2 {
  margin-top: 30px;
  color: #333;
  text-align: left;
}

ul {
  padding-left: 20px;
  text-align: left;
}

p {
  text-align: left;
}

a {
  color: #504DEE;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}