body {
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  line-height: 1.25;
  margin: 0;
  padding: 0;
  color: #000000;
}

header {
  display: flex;
  justify-content: center;
  padding: 1rem;
  border-bottom: 1px solid #ddd;
  font-weight: 400;
}

header nav {
  display: flex;
  gap: 1rem;
  max-width: 800px;
  width: 100%;
  justify-content: flex-end;
}

header nav a {
  text-decoration: none;
  color: #333;
}

header nav .highlight {
  color: #b509ac;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  padding: 1rem;
}

#about h1 {
  font-size: 2rem;
  color: #000;
}

#about .profile {
  display: flex;
  align-items: center;
  gap: 1rem; /* Space between the image and the text */
}

#about .profile-text {
  flex: 1; /* Ensures the text takes up the remaining space */
}

#about p {
  margin: 1rem 0;
}

#about img {
  width: 150px;
  height: auto;
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Shadow */
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.social-links a {
  text-decoration: none;
  font-size: 1.5rem;
  color: #333;
}

.social-links a:hover {
  color: #b509ac;
}

.email {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #555555;
  text-align: center;
}

#news ul {
  list-style-type: none;
  padding: 0;
}

#news ul li {
  display: flex;
  margin: 0.5rem 0;
  align-items: flex-start;
}

#news ul li span {
  min-width: 100px; /* Ensures consistent alignment */
  font-weight: bold;
}

#publications .publication {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 5px;
}

#publications .details {
  flex: 2;
}

#publications .details h3 {
  margin: 0;
  font-size: 1.2rem;
}

#publications .details .venue {
  font-style: italic;
  margin-top: 0.5rem;
}

#publications .links {
  margin-top: 1rem;
}

#publications .links a {
  display: inline-block;
  margin-right: 0.5rem;
  text-decoration: none;
  color: #007BFF;
  border: 1px solid #007BFF;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-size: 0.9rem;
}

#publications .links a:hover {
  background-color: #007BFF;
  color: #fff;
}

#publications .image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

#publications .image img {
  width: 200px;
  border-radius: 4px;
}

a {
  color: #b509ac;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}
