header {
  margin-bottom: 100px; /* Adjust this value to add space between header and body */
}


body {
  padding-top: 20px;
  background: #0b0b0f;
  color: #fff;
  font-family: 'Josefin Sans', sans-serif;
}

.separator {
  width: 30%;
}

.title {
  margin-top: 100px;
  margin-bottom: 10px;
  text-align: center; /* Center align the title */
}

.title a {
  color: #DB4D57;
  text-decoration: none;

  font-weight: bold;
}

.title a:hover {
  font-weight: bold;
}

.title hr {
  width: 75%;
  margin: 10px auto; /* Center the horizontal line */
  border-color: #DB4D57; /* Change the color of the horizontal line */
}

.summary {
  padding: 20px;
  text-align: center; /* Center align the summary */
}

.summary p {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.work-experience {
  padding: 20px;
  text-align: center; /* Center align the work experience */
}

.experience-title {
  margin-top: 50px;
}

.experience-summary {
  margin-top: 30px;
  margin-bottom: 50px;
}

.work-experience p {
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
}

.counter-number {
  font-size: 1.2rem;
  color: #2b3135;
  text-align: center; /* Center align the counter */
  margin-top: 20px; /* Add space between the counter and other content */
}

/* Profile Picture Styles */
.profile-picture {
  width: 150px; /* Adjust the size as needed */
  height: 150px; /* Adjust the size as needed */
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto; /* Center the image horizontally */
  border: 4px solid #fff; /* White border */
  margin-top: 20px; /* Add space between the profile picture and other content */
}

.profile-picture img {
  width: 100%;
  height: auto;
  display: block;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  min-height: 100vh; /* Adjust as needed */
}

.social-links {
  text-align: center;
  margin-top: 10px; /* Adjust this value to add space between the title and social links */
}

.social-links a {
  display: inline-block;
  margin: 0 10px; /* Adjust this value to add space between each social link */
}

.section {
  position: relative; /* Required for positioning the pseudo-element */
  margin-bottom: 60px; /* Adjust this value to add space between each section */
  padding-bottom: 20px;
  padding-left: 200px;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0%; /* Adjust this value to set the starting position of the line */
  width: 100%; /* Adjust this value to set the width of the line */
  height: 1px;
  background-color: #ccc; /* Adjust the color of the line */
  z-index: -1; /* Ensure the line is behind the section content */
}


#about {
  display: grid;
  place-items: center;
  padding-right: 200px;
  max-width: 760px; /* Adjust this value to set the maximum width of the text box */
  margin: 0 auto; /* Center the text box horizontally */
  margin-bottom: 90px;
}

#projects {
  padding-right: 200px;
  max-width: 760px;
}

#work-experience {
  padding-right: 200px;
  max-width: 760px;
}


