* {
    font-family: "Space Mono", Arial, Helvetica, sans-serif;
	font-size: 1rem;
	margin: 0;
	padding: 0;
	background: rgb(244 240 234);
}

p {
	padding-bottom: 2%;
}

header ul {
	display: flex;
	justify-content: space-around;
	align-items: center;
	flex-wrap: wrap;
	margin-bottom: 2%;
	height: 100px;
	background: rgb(85 107 47);
}

header li {
	list-style-type: none;
}

header li a{
	font-size: 1.5rem;
	text-decoration: none;
	background: rgb(85 107 47);
	color: rgb(244 240 234);
}

header li a:hover{
	color: black;
}

h1, h3{
	background: rgb(85 107 47);
	color: black;
	text-align: left;
	font-weight: bolder;
}

h1 {
	color: rgb(244 240 234);
}

h2 {
	background: rgb(85 107 47);
	color:  rgb(244 240 234);
	font-size: 2rem;
	margin: 0 5%;
	padding: 1%;
	text-align: center;
}

#bio h3 {
	padding: 1%;
	color: rgb(244 240 234);
}

h3 p{
	background: rgb(85 107 47);
	color: rgb(244 240 234);
	display: inline;
	font-weight: normal;
}

h4, h6 {
	background: rgb(85 107 47);
}

h6 {
	margin-bottom: 2%;
}

h3, h1 {
	text-align: center;
	font-size: 1.75rem;
}

.banner {
	display: flex;
}
.banner img {
	width: 60%;
	margin: 0% auto;
	justify-content: center;
}

.hesperPhoto {
	height: 500px;
	width: 95%;
	margin: 7% 0% 0%;
}

.top {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 0 5%;
	margin-top: 5%;
}

.split {
	width: 425px;
}

.description {
	border: 2px solid black;
	border-radius: 5%;
	padding: 0 3%;
	margin: 1%;
}

.card {
	padding: 2% 3%;
	margin: 1%;
	border-radius: 5%;
    text-align: center;
	background: rgb(85 107 47);
}

.card span , .card p{
	background: rgb(85 107 47);
	color: rgb(244 240 234);
	display: inline;
	font-weight: normal;
}

.card span {
	color: black;
	font-weight: bold;
}

.learn {

	display:flex;
	flex-wrap: wrap;
}

.learn div {
	flex: 1;
}

.learn img {
	display: block;
	margin: 0 15%;
	width: 85%;
	border-radius: 5%;
}

#bio {
	margin-top: 2%;
	padding: 5% 2%;
}

#bio p {
	margin-top: 7%;
	text-indent: 10%;
}

.panel li {
	list-style-type: "★ ";
}

.questions {
	margin: 0 5%;
}

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

.questions a:hover {
	text-decoration: none;
	color: rgb(85 107 47);
}

.accordion {
	background: rgb(85 107 47);
	color: rgb(244 240 234);
	cursor: pointer;
	padding: 1rem;
	width: 100%;
	text-align: left;
	transition: 0.4s;
	margin: 1% 0;
}
  
.active, .accordion:hover {
	background: black;
}
  
.panel {
	background: white;
	padding: 5% 7%;
	display: none;
	overflow: hidden;
}
  
.accordion:after {
	color: black;
	float: right;
	content: "★"; 
}

.active:after {
	content: "★";
	color:rgb(244 240 234);
}

.breaker {
	height: 100px;
}

.miniBreak {
	height: 50px;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
	margin: 0 5%;
    gap: 25px;
}
  
.project {
    width: 300px;
    border-radius: 10px;
    overflow: hidden;
    background:  rgb(244 240 234);
    box-shadow: 0 4px 10px black;
    transition: transform 0.3s, box-shadow 0.3s;
}
  
.project:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
  
.project-image {
    width: 100%;
    height: 200px;
    object-fit: fill;
}
  
.project-info {
    padding: 15px;
	background: rgb(85 107 47);
}
  
.project-info h3 {
    margin: 0 0 10px;
    font-size: 1.75rem;
    color: rgb(244 240 234);
	background: rgb(85 107 47);
}
  
.project-info p {
    font-size: 1rem;
    margin: 0 0 10px;
	color: rgb(244 240 234);
	background: rgb(85 107 47)
}
  
.project-link {
    display: inline-block;
    text-decoration: none;
    color: rgb(244 240 234);
    background: black;
    padding: 10px 15px;
    border-radius: 5px;
    font-size: 1rem;
}
  
.project-link:hover {
    color: rgb(244 240 234);
	background: black;
}

.panel li, .panel ul, .panel li a, .panel div, .form label{
	background: white;
}

.form {
    text-align: center;
}

form {
    display: block;
}

form div {
	padding: 0% 5% 2%;

}

form input, form textarea{
	width: 100%;
	background: rgb(85 107 47);
	color: rgb(244 240 234);
	position: relative;
	padding: 12px;
}

form button {
	background: black;
	color: rgb(244 240 234);
	padding: 2%;
}

footer {
	height: 100px;
	background: rgb(85 107 47);
	padding-left: 1%;
	padding-top: 1%;
}

footer span {
	font-size: 1rem;
	background: rgb(85 107 47);
	color: rgb(244 240 234);
}