@charset "utf-8";
/* CSS Document */

* {
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}

/*Mobile Global View*/

body {
	background-color: #dfe67d;
}

.page-wrapper {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	
	height: 100vh;
	height: calc(var(--vh, 1vh) * 100);
} 

main {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	
	-webkit-box-flex: 1;
	-ms-flex: 1;
	flex: 1;
}

header {
	background-color: #42A240;
	padding: 8px 15px;
	display: flex; /*title*/
    align-items: center; /*title*/
	z-index: 1;
}

.logo img {
	width: 50px;
	vertical-align: bottom; /*text-descender padding*/
}

.title {
	flex: 1; /*container consumes the remaining horizontal space*/
}

.title h3 {
	font-family: 'Gentium Basic', serif;
	font-size: 15px;
	font-weight: 400;
	color: white;
	text-align: center; /*title*/
	margin: 0px;
	padding: 0px;
}

.twitter {
	display: flex;
	align-items: center;
}

.twitter .fa-twitter {
	font-size: 24px;
	color: white;
	/*margin-right: 8px;*/
}

.twitter .fa-twitter:hover {
	cursor: pointer;
}

.notice {
	margin-top: 4px;
}

.notice p {
	color: #696969;
	font-family: 'Cutive Mono', monospace;
	text-align: center;
	font-size: 14px;
}

/*
.twitter .fa-comment-dots {
	font-size: 22px;
	color: white;
}

.twitter .fa-comment-dots:hover {
	cursor: pointer;
}
*/

footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	
	font-family: 'Gentium Basic', serif;
	font-size: 13px;
	font-weight: 400;
	color: white;
	background-color: #42a240;
	padding: 0px 5px;
	
	position: fixed;
	bottom: 0%;
	width: 100%;
	z-index: 1;
}

.footer1 {
	text-align: left;
	width: 30%;
	font-family: 'Almendra', serif;
	font-size: 12px;
	color: #7ec352;
}

.footerR {
	text-align: right;
	width: 30%;
	font-family: 'Almendra', serif;
	font-size: 8.63px;
	color: #7ec352;
}

/*Form*/
.form-container {
	margin: 0px auto 17px auto;
	background-color: #dfe67d;
	width: 85%;
	font-family: 'Neuton', serif;
	font-size: 16px;
	padding: 30px;
}

.form-container h2 {
	margin: 0px 0px 3px 0px;
	padding: 0px;
	font-weight: 500;
	text-align: center;
	font-family: 'PT Serif Caption', serif;
	font-size: 15px;
}

.feedback-form label  {
	display: block;
	margin: 5px 0px 5px 0px;
	font-size: 15px;
}

.feedback-form .check {
	margin-top: 1px;
}

.feedback-form input, .feedback-form textarea  {
	width: 100%;
	border: none;
	border-radius: 4px;
	font-family: 'Neuton', serif;
	font-size: 15px;
	padding: 4px;
}

.alert-message {
	color: black;
	padding: 4px 12px;
	border-radius: 4px;
	text-align: center;
	margin: 10px 0px 20px 0px;
	background-color: #7ec352;
	font-family: 'Neuton', serif;
	font-size: 15px;
}

.btn-green {
	color: #fff;
	padding: 4px 7px;
	font-family: 'PT Serif Caption', serif;
	font-size: 13px;
	font-weight: 400;
	letter-spacing: 0.5px;
	border-radius: 4px;
	background-color: #7ec352;
	border: 0.95px solid black;	
	display: block;
	margin: 20px auto;
}

.btn-green:hover {
	cursor: pointer;
}
/*Form*/

/*Tablet View-1*/

@media (min-width: 501px) {
	.form-container {
		width: 50%;
	}
	
	footer {
		font-size: 15px;
	}
	
	.footer1 {
		font-size: 14px;
	}

	.footerR {
		font-size: 10.63px;
	}
}

/*Desktop View*/

@media (min-width: 1193px) {
	header {
		padding: 8px 40px;
	}
	
	.form-container {
		width: 40%;
	}
}
