@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Caladea&display=swap');

/* General HTML Styles */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100vh;
	background: linear-gradient(171deg, rgba(208, 208, 211, 1) 14%, rgba(255, 255, 255, 1) 100%);
	position: relative;
	margin: 0 auto;
	min-width: none;
	max-width: 100vw;
	overflow: auto;
	scroll-behavior: smooth;
}

.wrapper {
	max-width: 80%;
	background-color: rgba(247, 244, 240);
	margin: 0 auto;
	min-height: 708px;
	border-radius: 10px;
	-webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.55);
	box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.55);
}

.header {
	font-family: 'Marcellus', sans-serif;
	background-color: #729488;
	color: black;
	overflow: auto;
	border-radius: 10px 10px 0px 0px;
	-webkit-box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.01);
	box-shadow: 5px 5px 15px 5px rgba(0, 0, 0, 0.01);
	display: inline-flexbox;
	height: 200px;
}

.header img {
	/* transform: translate(50px, 20px); */
	float: center;
}

.header ul {
	list-style: none;
}

.header ul li a {
	float: right;
	text-decoration: none;
	font-size: 1.5em;
	color: white;
	padding-left: 10px;
	padding-right: 20px;
}

.header ul li a:hover {
	color: red;
}

hr.solid {
	border-top: 5px solid rgb(88, 88, 88);
}

hr.top {
	transform: translateY(-17px);
}

hr.bottom {
	width: 85%;
	margin: auto;
	transform: translateY(-120px);
}

p {
	padding-left: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-right: 10px;
	font-family: 'Caladea', sans-serif;
	font-size: 1.1em;
}

body {
	min-height: 100%;
	position: relative;
	left: auto;
	right: auto;
	top: auto;
	bottom: auto;
	background: linear-gradient(171deg, rgba(208, 208, 211, 1) 14%, rgba(255, 255, 255, 1) 100%);
	font-family: Arial, Helvetica, sans-serif;
}

h1, h2, h3, th, td {
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 5px;
	padding-bottom: 5px;
}

h1, h3 {
	font-size: 1.5em;
}

h5 {
	padding-left: 10px;
}

.schedule {
	text-align: center;
	font-size: 1.4em;
}

.contact-title {
	text-align: center;
}

/* Style inputs, select elements and textareas */
input[type=text], select, textarea {
	width: 100%;
	padding: 12px;
	border: 1px solid #ccc;
	border-radius: 4px;
	box-sizing: border-box;
	resize: vertical;
}

/* Style the label to display next to the inputs */
label {
	padding: 12px 12px 12px 0;
	display: inline-block;
}

/* Style the submit button */
input[type=submit] {
	background-color: rgb(182, 182, 182);
	color: black;
	padding: 12px 20px;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	float: right;
}

input[type=submit]:hover {
	filter: brightness(110%);
}

input[type=submit]:active {
	transform: translateY(1px);
}

input[type=submit]:focus {
	outline: none;
}

/* Style the container */
.container {
	width: 80%;
}

/* Floating column for labels: 25% width */
.col-25 {
	float: left;
	width: 20%;
	margin-top: 6px;
}

/* Floating column for inputs: 75% width */
.col-75 {
	float: left;
	width: 75%;
	margin-top: 6px;
}

/* Clear floats after the columns */
.row:after {
	content: "";
	display: table;
	clear: both;
}

.email-input {
	width: 99.99%;
}

.button {
	margin: 0 auto;
}

/* Couple of other sections */

#about img {
	width: 450px; 
	height: 380px;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

#about p {
	text-align: left;
}

.info p {
	text-align: center;
}

@media only screen and (max-width: 602px) {
	#about img{
		width: 350px;
		height: 280px;
	}
}

@media only screen and (max-width: 450px) {
	#about img{
		width: 250px;
		height: 230px;
	}
}