ul {
  list-style-type: disc;
  margin-left: 20px;
  padding-left: 20px;
}
ul ul {
  list-style-type: circle;
  margin-left: 20px;
}
ul ul ul {
  list-style-type: square;
  margin-left: 20px;
}

/* Bold text for the first level of the list */
ul > li {
  font-weight: bold;
}

/* Ensure sublist items are not bold */
ul > li ul li {
  font-weight: normal;
}

#article-content {
  position: relative;
  overflow: hidden;
  padding: 3rem;
}

.profile-photo {
  float: right;
  margin: 0 0 2rem 4rem; /* Adds space around the image */
  width: 400px; /* Adjust the size as needed */
  border-radius: 10px; /* Optional: Adds rounded corners */
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2); /* Optional: Adds a shadow */
}

#article-content p {
  text-align: justify; /* Justifies the text */
  line-height: 1.6; /* Optional: Improves readability */
}