body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f4f4f4;
}
header {
  text-align: center;
  margin-bottom: 30px;
}
h1 {
  color: #2c3e50;
}
.profile-image-container {
  width: 220px;
  height: 220px;
  margin: 0 auto 20px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.profile-image-container::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: inherit;
  filter: blur(10px);
  z-index: -1;
}
.profile-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.project {
  background-color: #fff;
  border-radius: 5px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.project h3 {
  margin-top: 0;
  color: #3498db;
}
a {
  color: #3498db;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.icon {
  margin-right: 10px;
  color: #3498db;
}
.interests {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}
.interest {
  text-align: center;
}
.interest i {
  font-size: 2em;
  margin-bottom: 5px;
}
