@charset "UTF-8";
/* CSS Document */

body {
	margin-left:10%;
	margin-right: 10%;
	font-family:  'Open Sans', sans-serif;
}
.container {
	border-color: yellow;
	boder: 3px;
	margin: 10px; 
}

.header {
	border-top: 3px solid gold;
	padding-top: 20px;
	
}

.nav-link {
    font-weight: 400;	
	color: #000;           
    text-decoration: none; 
    font-weight: bold;    
	margin-left: 10%;
	text-align: right;
}

.nav-link:hover {
	border-bottom: 3px solid gold;
}


.flex-container-about {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	clear: right;
}
.flex-container-about div {
	position:relative;
	margin-bottom: 10px;
	margin-top: 10px;
	padding-bottom: 10px;
	padding-top: 10px;
	width: 50%;
	min-width: 400px;

}

.right-align {
    float: right;
    margin-left: 20px; 
}

.flex-container-about a {
    font-weight: 600;	
	color: #000;           
    text-decoration: none;    
}

.flex-container-about: hover {
	color:gold;
}

.profile-container{
  	display: flex;
	flex-flow: row wrap;
    justify-content: space-between; /* Space between each div */
    gap: 10px; /* Adds space between the divs */
	margin-right:20%;
	margin-left: 20%;
	margin-top: 10%;
	margin-bottom: 10%;
}

.profile-box{
    align-items: center; /* Vertically aligns items */
	width: 30%; /* Set the width of each box */
    text-align: center; /* Optional: Center-align text */
	min-width: 200px;
}

.profile img{
 	max-width: 100%;        /* Ensure the image scales properly */
	text-align: center;
    height: auto;
}

#profiletitle{
	font-weight: 600;
	font-size: 1.5em;
	text-align: center;
}

.profile p{
	font-size: .85em;
	text-align: center;
}

.footer {
	border-bottom: 3px solid gold;
	padding-bottom: 10px;
}

.footerlogo {
	float: left;
}

.footer p{
	text-align: center;
	align:bottom;
	font-size: .75em;
	
}
