* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  background-color: #fff8db;
  min-height: 100vh;
  border: 10px solid #ff7847;
}

.content {
  max-width: 900px;
  margin: 0 auto;
}
.top_section {
  margin-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.top_section h1 {
  font-size: 50px;
  font-weight: bold;
  color: #1d1e4c;
  text-transform: uppercase;
}
.top_section h4 {
  font-size: 30px;
  text-align: end;
}

.image_container {
  border-radius: 50%;
  overflow: hidden;
}

.image_container,
img {
  width: 300px;
  height: 320px;
}
.about_section {
  margin-top: 50px;
}
.about_section h2 {
  font-size: 70px;
  font-weight: 400;
  margin-bottom: 20px;
}
.about_section p {
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 1.2px;
  text-align: justify;
}
.biography_section {
  margin: 50px 0;
}
.biography_section h3 {
  margin-bottom: 20px;
}
.biography_section ul {
  margin-left: 50px;
}
.biography_section li {
  margin-bottom: 15px;
}

footer {
  margin: 50px 0;
}
footer p {
  text-align: end;
}

@media (max-width: 768px) {
  .top_section {
    flex-direction: column; /* Stack elements vertically */
    align-items: center; /* Center items horizontally */
  }

  .top_section h1 {
    font-size: 30px; /* Reduce heading size */
  }

  .top_section h4 {
    font-size: 20px; /* Reduce subheading size */
    text-align: center; /* Center subheading */
  }

  .image_container,
  img {
    width: 100%; /* Make image responsive */
    height: 100%; /* Maintain aspect ratio */
    max-width: 300px; /* Limit maximum image width */
  }

  .about_section h2 {
    font-size: 40px; /* Reduce heading size */
  }

  .about_section p {
    font-size: 16px; /* Reduce paragraph font size */
  }

  .biography_section ul {
    margin-left: 50px; /* Reduce list indent */
    margin-right: 20px;
  }
  .about_section {
    margin-left: 50px;
    margin-right: 20px;
  }
}
.navbar {
  background-color: #1d1e4c; /* Example background color */
  color: white; /* Example text color */
  padding: 10px 20px; /* Example padding */
  text-align: right; /* Align content to the right */
}

.navbar .navbar-content {
  display: flex; /* Use flexbox for layout */
  align-items: left; /* Vertically align items */
  justify-content: LEFT; /* Align items to the right */
}

.navbar .name {
  margin-right: 20px; /* Add spacing between name and department */
}

.clg{
  margin-right: 50px;
}

.name{
  margin-right: 300px;}