* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f3f2ef;
  color: #333;
  line-height: 1.6;
}

.header {
  background-image: url("https://media.licdn.com/dms/image/v2/D4E16AQHCyPZVfDW-_Q/profile-displaybackgroundimage-shrink_350_1400/profile-displaybackgroundimage-shrink_350_1400/0/1735405469342?e=1741219200&v=beta&t=bwlnjZFEByt17jxmA8WDVDkNtDTYs8NARC9IKEyQfs8");
  background-size: cover;
  background-position: right;
  height: 250px;
  position: relative;
}

.profile-picture {
  width: 150px;
  transition: transform 0.5s ease;
  height: 150px;
  border-radius: 50%;
  border: 4px solid #fff;
  position: absolute;
  bottom: -75px;
  left: 50%;
  transform: translateX(-50%);
}

.main-content {
  background-color: #fff;
  margin: 100px auto 20px;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 800px;
}

.main-content h1 {
  text-align: center;
  margin-bottom: 10px;
  font-size: 28px;
}

.main-content p {
  text-align: center;
  font-size: 18px;
  color: #555;
  margin-bottom: 20px;
}

.section {
  margin-bottom: 20px;
}

.section h2 {
  font-size: 24px;
  margin-bottom: 10px;
  border-bottom: 2px solid #0073b1;
  padding-bottom: 5px;
}

.section p,
.section ul {
  text-align: left;
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.section a {
  color: rgb(85, 26, 139);
}
.linkedin-button {
  display: block;
  width: fit-content;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 16px;
  color: #fff;
  background-color: #0073b1;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

.linkedin-button:hover {
  background-color: #005580;
}

ul {
  list-style: none;
  padding-left: 0;
}

ul li {
  margin-bottom: 8px;
}
