html,
body {
	font-family: Arial, sans-serif;
	margin: 0;
	padding: 0;
	background-color: #000000;
}

body {
	background: linear-gradient(to bottom, rgba(50, 0, 0, 0.3), rgba(0, 0, 50, 0.3));
	color: #333;
}
header {
	color: #fff;
	padding: 1%;
	text-align: left;
}

nav ul {
	list-style: none;
	padding: 1%;
	display: flex;
	justify-content: left;
	margin: 0;
}

nav li {
	margin: 0;
	padding: 1px;
}

nav a {
	text-decoration: none;
	color: #7751ab;
}
a {
	text-decoration: none;
	display: inline-block;
	color: #bdbdbd;
}
a:hover {
	background-color: rgba(51, 9, 70, 0.36);
	text-decoration: underline;
}
h1,
h2,
h3 {
	color: #bebbab;
	margin-bottom: 0.5em;
}
h1 {
	font-size: 2.5rem;

	margin-bottom: 0.5em;
}
h2 {
	font-size: 2rem;

	margin-top: 1.5em;
}
h3 {
	font-size: 1.5rem;

	margin-top: 1.2em;
}
hr {
	margin-top: 2.3em;
	margin-bottom: 2.3em;
}
strong {
	font-weight: bold;
	color: #cd9329;
}
.highlight {
	color: orange;
	font-size: 1.1em;
}
ul ul,
ul ul li {
	margin: 0;
	padding: 1%;
}
ul {
	margin: auto;
	padding: auto;
}
ul li {
	padding: 0.2%;
	list-style: none;
	margin-left: 1%;
}

ul.todo.scroll {
	overflow: scroll;
	height: 250px;
	margin: 1.61%;
	padding: 1.61%;
}
ul.todo li {
	margin: 0.61%;
	padding: 0.61%;
	list-style-type: square;
}
ul.todo li.next {
	margin-top: 0.61%;
	margin-bottom: 0.61%;
	margin-left: -3%;
	padding: 4%;
	padding-top: 1%;
	background-color: rgba(0, 0, 0, 0.39);
	list-style-type: none;
}
ul.todo li.done {
	color: #666;
	text-decoration-line: line-through;
	list-style-type: circle;
}
ul.button {
	margin: 0;
}
ul.button li {
	margin: 0;
	padding: 0;
}
ul.button li a {
	color: white;
	padding: 10%;
	margin: 1%;
	min-width: 140px;
	background-color: #087cc5;
	display: block;
	border-radius: 15px;
}

ul.button li a img {
	width: 33px;
	height: auto;
}
ul.list li a img {
	width: 17px;
	height: auto;
}
ul.button li {
	margin: 0;
	padding: 3%;
	display: inline-block;
}
ul.button li a {
	text-decoration: none;
}
ul.button li a:hover {
	background-color: darkgreen;
}
ul.button.drive {
	font-size: x-large;
}
ul.button.drive li a {
	color: white;
	padding: 10%;
}
ul.button.drive li a.hours {
	background-color: #754c38;
}
ul.button.drive li a.spent {
	background-color: #2e3133;
}
ul.button.drive li a.cash {
	background-color: #308450;
}
ul.button.drive li a.pledge {
	background-color: #6a7538;
}

ul.dot li {
	list-style: circle;
}
a.donate {
	border: 1px solid #333;
}
ul.list {
	margin: 0;
	padding: 1%;
}

main {
	padding: 20px;

	display: flex;
	flex-wrap: wrap; /* Allow items to wrap to the next line */
	justify-content: flex-wrap; /* // flex-wrap left */

	align-items: flex-start;
}

section {
	justify-content: left;
	font-size: large;

	color: #c6c1c1;
	padding: 2%;
	margin: 2%;
	border-radius: 15px;
	background: linear-gradient(to bottom, rgba(50, 0, 0, 0.3), rgba(0, 0, 50, 0.3));
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.clear {
	clear: both;
}

textarea {
	color: white;
	border: 1px solid #333;
	background: linear-gradient(to bottom, rgba(50, 0, 0, 0.3), rgba(0, 0, 50, 0.3));
}
.gradient-container {
	/* Linear Gradient from top to bottom with transparency */
	background: linear-gradient(to bottom, rgba(255, 0, 0, 0.5), rgba(0, 0, 255, 0.5));

	/* You can adjust the colors and transparency as needed */
	/* The rgba values represent Red, Green, Blue, and Alpha (transparency) */
	/* In this example, the gradient goes from semi-transparent red to semi-transparent blue */

	/* Other styling for the container */
	width: 100%;
	height: 200px;
	/* Add more styles as needed */
}
.clear {
	clear: both;
}
footer {
	text-align: center;
	padding: 10px;

	color: #fff;
	clear: both;
}
#searchForm {
	display: flex;
	flex-direction: row;
	max-width: 90%;

	background-color: #121026;
	padding: 1%;
	margin-left: 3%;
	margin-bottom: 2%;
}

#searchInput {
	color: #f3f3f3;
	background-color: #252323;
	padding: 2%;
	font-size: 16px;
	margin-right: 4%;
	border: 1px solid #333231;
	max-height: 100px;
}

#searchEngine {
	padding: 1%;
	background: #252323;
	color: #e7bf68;
	font-size: 16px;
	margin-left: 2%;
	border: 1px solid #252323;
}

#submitButton {
	padding: 1%;
	color: #e7bf68;
	font-size: 16px;
	cursor: pointer;
	background: #252323;
	margin-left: 2%;
	border: 1px solid #252323;
}
.flex-container {
	display: flex;
	flex-direction: row; /* // row | row-reverse | column | column-reverse */
	justify-content: space-evenly; /* // flex-start | flex-end | center | space-between | space-around | space-evenly */
}

.flex-item {
	flex: auto; /* //  initial | auto | none | <number>  */
	flex-grow: 1;
	min-width: 300px;
}
.flex-item img {
	max-width: 97%;
}
/* Media query for screens with a maximum width of 768 pixels */
iframe {
	border: none;
}
.ease {
	-webkit-transition: all 2.1s ease-in-out;
	-moz-transition: all 2.1s ease-in-out;
	-o-transition: all 2.1s ease-in-out;
	transition: all 2.1s ease-in-out;
}
a#logos {
	width: 50%;
	height: auto;
}
a#logos img {
	width: 12%;
	height: auto;
}
.banner {
	display: block;
	height: 500px;
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 1px;
}
.banner.ear {
	background-image: url("i/i-humanear.png");
	transform: rotate(5deg);

	margin: 10%;
	clear: both;
	-webkit-transition: all 6s ease-in-out;
	-moz-transition: all 6s ease-in-out;
	-o-transition: all 6s ease-in-out;
	transition: all 6s ease-in-out;
}
.banner.ear:hover {
	background-image: url("i/i-humanear.png");
	transform: rotate(-360deg);

	-webkit-transition: all 3.9s ease-in-out;
	-moz-transition: all 3.9s ease-in-out;
	-o-transition: all 3.9s ease-in-out;
	transition: all 3.9s ease-in-out;
}

.banner.mural {
	background-image: url("i/wall_mural.jpg");
	background-position: top;
	-webkit-transition: all 20s ease-in-out;
	-moz-transition: all 20s ease-in-out;
	-o-transition: all 20s ease-in-out;
	transition: all 20s ease-in-out;
}
.banner.mural:hover {
	background-image: url("i/wall_mural1000.jpg");
	background-position: bottom;
	-webkit-transition: all 5s ease-in-out;
	-moz-transition: all 5s ease-in-out;
	-o-transition: all 5s ease-in-out;
	transition: all 5s ease-in-out;
}
.banner.bluear {
	background-image: url("i/ears1blue.jpg");
	background-position: bottom;
	-webkit-transition: all 60s ease-in-out;
	-moz-transition: all 60s ease-in-out;
	-o-transition: all 60s ease-in-out;
	transition: all 60s ease-in-out;
	border-radius: 1px;
	height: 250px;
}
.banner.bluear:hover {
	background-image: url("i/ears0blue.jpg");
	background-position: top;
	-webkit-transition: all 133s ease-in-out;
	-moz-transition: all 133s ease-in-out;
	-o-transition: all 133s ease-in-out;
	transition: all 133s ease-in-out;
	border-radius: 9000px;
}
@media only screen and (max-width: 600px) {
	.flex-container {
		display: flex;
		flex-direction: column; /* // row | row-reverse | column | column-reverse */
		justify-content: flex-start; /* // flex-start | flex-end | center | space-between | space-around | space-evenly */
	}
	body {
		margin: auto;
	}
	section {
		width: 98%;
		padding: 1%;
		margin: 1%;
	}
	section img {
		width: 80%;
		padding: 0;
		margin: 2%;
	}
}

/* Media query for screens with a minimum width of 1200 pixels */
@media only screen and (max-width: 600px) {
	body {
		margin: 0;
	}
	nav ul {
		padding: 0%;
		justify-content: space-between;
		/* // justify-content: left; */
		margin: 0;
	}
}
