* {
    box-sizing: border-box;
}

.profile-photo {
    initial-width: ;
    max-width:100%;
    height:auto;
    border-radius:10px;
}



.bio-layout {
display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    flex-wrap:wrap;
}

.bio-column {
    flex:1;
    min-width:250px;
}

.bio-photo {
    text-align: center;
}

@media screen and (max-width: 900px) {
    .bio-layout {
        flex-direction: column;
    }
}



/* above is from AI */





body {
    background: #f4fffd;
    background: linear-gradient(
        135deg,
        #f4fffd 0%,
        #dffaf5 35%,
        #c8f2eb 70%,
        #b0e8df 100% );

 max-width:1200px;

    margin:auto;

    font-family: sans-serif;
    font-size: clamp(1rem, 2vw, 1.25rem);
	    padding: 20px;
		
		    color: black;
}


/* MENU SYSTEM */



ul {
    padding: 0;
    list-style: none;
    background: linear-gradient(
        90deg,
        #5fc9c1,
        #7edbd4
    );

    border-radius: 8px;
    text-align: center;
    font-family: sans-serif;
    width: 100%;
    margin-bottom: 20px;
    font-size: clamp(1rem, 2vw, 1.25rem);
    box-shadow: 0 2px 8px rgba(0,0,0,.08);
}


ul {
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
}


ul li {
    display: inline-block;
    position: relative;
    line-height: 11px;
    text-align: center;
    margin-top: 4px;
}






ul li a {
    display: block;
    padding: 1rem;
    color: #ffffff;
    text-decoration: none;
    transition: all .25s ease;
}

ul li a:hover {
    color: #004d4d;
    background: rgba(255,255,255,.65);
    border-radius: 6px;
	    display: inline-block;
}



ul li ul.dropdown {
    min-width: 140px;
    background: #4ebbb3;
 display: none;
    position: absolute;
    z-index: 999;
    left: 0;
    margin-top: 0;
    border-radius: 6px;
}

ul li:hover ul.dropdown {
    display: block;
}

ul li ul.dropdown li {
    display: block;
}







/* CONTENT */

#content,
.content {
    background-color: rgba(255,255,255,.95);
    padding: 2rem;
    font-size: clamp(1rem, 2vw, 1.25rem);
    border-radius: 10px;
    line-height: 1.5em;
    box-shadow: 0 3px 12px rgba(0,0,0,.08);

}


/* HEADINGS */

h1 {
    color: #114b5f;
    background-color: #d9f8f3;
    display: inline-block;
	max-width:100%;
    border-radius: 8px;
    font-weight: 400;
    font-size: 1.7em;  
		margin-left:.3em;

}

h2 {
    color: #145c5c;
    background-color: #eefdf8;
       display: inline-block;
	max-width:100%;
    border-radius: 8px;
    font-weight: 500;
    font-size: 1.5em;
		margin-left:.3em;
		
}

h3 {
    color: #1b5e5e;
    background-color: #dff9f4;
       display: inline-block;
	max-width:100%;
    padding: 1rem;
    border-radius: 8px;
    text-shadow: 1px 1px 2px rgba(0,0,0,.10);
}

h4 {
    color: #1f7a7a;
    display: inline;
}

p {
	    font-size: clamp(1rem, 2vw, 1.25rem);
	 text-align: justify;
	 line-height:normal;
	 padding:.2em;
}

/* IMAGES */

img{
    max-width:100%;
    height:auto;
}

/* FOOTER */

#footer {
	background-color: white;
	font-size: 12px;
	color: #4d0099; 
	/*  color:#00ccff;  */  
	width: 100%;
	clear: both; 
	font-weight:700;
	text-align:center;
	line-height:2em;
		   border-radius: 6px;
   
}




.nested {
    margin-left: 5%;
    margin-right: 5%;
    text-align: left;
}

a{
    overflow-wrap:break-word;
}