/* Reset some default styles */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

li {
    display: inline;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: black;
}

a:hover {
    color: #555;
}

header h1 {
    margin-bottom: 30px; /* Increase space below the h1 element */
    font-family: Arial, Helvetica, sans-serif; /* Set the font to a sans-serif type */
}


nav {
    margin-top: 30px; /* Increase space above the nav element */
}


header {
    text-align: center;
    margin-bottom: 20px; /* Adjust as needed for spacing */
}

header nav ul {
    padding: 0;
    list-style: none;
    display: inline-block; /* Center the nav in the header */
    margin: 0; /* Remove default margin */
}

header nav ul li {
    display: inline;
    margin: 0 15px; /* Adjust spacing between items */
}

header nav ul li a {
    text-decoration: none;
    color: black; /* Adjust the color as needed */
    font-weight: bold; /* Makes text bold */
    font-size: 18px; /* Adjust size as needed */
    position: relative;
}

/* Add the lines on the sides of the nav links */
header nav ul li:not(:last-child)::after {
    content: '/';
    color: black; /* Adjust the color to match your design */
    margin-left: 15px; /* Adjust spacing after the slash */
}

/* Horizontal lines above and below the nav */
header nav::before,
header nav::after {
    content: '';
    display: block;
    border-top: 1px solid black; /* Adjust the color and thickness as needed */
    margin: 10px auto; /* Centers the line and adds vertical spacing */
    width: 80%; /* Adjust width as needed */
}





/* Container for the entire page */
.container {
    width: 80%;
    margin: 0 auto;
}

header {
    text-align: center;
    padding: 20px 0;
}

.profile-photo {
    width: 200px; /* Adjust as needed */
    height: auto;
    border-radius: 50%; /* Makes the image round */
    margin: 20px 0;
}

/* Style for the navigation menu */
nav ul {
    padding: 0;
}

nav li {
    font-family: Arial, Helvetica, sans-serif; /* Set the font to a sans-serif type */
    display: inline;
    margin: 0 10px;
}

nav a {
    font-weight: bold;
    color: #000;
    transition: color 0.3s ease;
}

nav a:hover {
    color: #0056b3;
}

#biography {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: left; /* Align text to the left */
    margin: 20px 0;
}



.bio-title{
    font-family: Arial, Helvetica, sans-serif; /* Set the font to a sans-serif type */
    font-size: 22px;
    text-align: left;
    margin-left: 0px;
}




.bio-photo {
    flex-basis: 250px; /* Adjust the width of the photo area */
}


.profile-photo {
    width: auto; /* Adjust based on the actual image size */
    height: 300px; /* Set a fixed height for the rectangle */
    border-radius: 0; /* Removes the rounding of the corners */
    object-fit: cover; /* Ensures the image covers the area without stretching */
    margin-left: 20px; /* Adjust spacing as needed */
}


/* Biography section styles */
#biography {
    text-align: center; /* Center the content */
    margin: 20px 0;
}

/* Style for biography text */
.bio-content {
    font-family: Arial, Helvetica, sans-serif; /* Set the font to a sans-serif type */
    flex: 1; /* Takes up the remaining space */
    padding-right: 0px; /* Adds some space between text and image */
    text-align: left;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    max-width: 900px; /* Adjust the width of the paragraph */
    margin: 0 auto; /* Center the paragraph */
}


/* Center the navigation links under the name */
nav {
    text-align: center;
}

/* Layout for the content and image */
#biography {
    display: flex;
    justify-content: space-between; /* This will place content and image on opposite ends */
    align-items: flex-start; /* Aligns items to the top */
}


.bio-photo {
    /* Adjust width as needed, maybe around 30% */
    width: 35%;
    display: flex;
    justify-content: flex-end; /* This will push the image to the right */
}

.profile-photo {
    /* Remove border-radius if you no longer want it rounded */
    border-radius: 0;
    /* Set a max-width to control the size of the image */
    max-width: 70%;
    height: auto;
}
.container h1{
    width: 80%;
    margin: 0 auto;
    text-align: left;
}


.bio-content2{
    display: flex; /* This will create a flex container */
    align-items: flex-start; /* This will align the items to the start of the container vertically */
    padding-left: 10px;
}

.bio-content3{
    flex: 1; /* This will allow the paragraph to fill the available space */
    margin-right: 10px; /* This will create some space between the text and the image */
}

.bio-photo {
    /* This will limit the width of the image container if needed */
    flex-basis: 300px; /* Adjust the width as needed */
}

.profile-photo {
    width: 100%; /* This will make the image responsive within the .bio-photo container */
    height: auto; /* This will maintain the aspect ratio of the image */
}

.container h1{
    font-size: 38px;
}

.c1 {
    
    /* Remove border-radius if you no longer want it rounded */
    border-radius: 0;
    /* Set a max-width to control the size of the image */
    max-width: 50%;
    height: auto;
    justify-content: center;
}

.link {
    color: blue; /* Set the color to blue */
    text-decoration: underline; /* Underline the link for clarity */
}
