/*
@import url('https://fonts.googleapis.com/css2?family=Charm:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Suez+One&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Farsan&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*/
@import url('https://fonts.googleapis.com/css2?family=Vujahday+Script&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans:ital,wght@0,300;0,700;1,300;1,700;0,900&display=swap');

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body {
	font-family: 'Work Sans', sans-serif;
	font-weight: 300;
	background: #222;
	color: #fff;
	font-size: 16px;
}

a {
	text-decoration: none;
	color: #aaa;
}
a :hover {
	color: #fff;
}

ul {
	list-style: none;
}


.section-top {
	min-height: 150px;
	max-height: 150px;
	background: #000;
	/*background: url('/images/logo/mtc.svg') no-repeat left;*/
}

.section-top  .logo{
	float: left;
	background: #ccc;
}

.section-top  .sitelogo{
	float: left;
	padding: 10px;
}

.section-top  .content{
	float: left;
	width: 50%;
	padding-left: 40px;
}

.section-top  .content .sitename {
	display: flex;
	align-items: center;
	font-family: 'Work Sans', sans-serif;
	font-weight: 900;
	font-size: 40px;
	text-align: left;
}

.section-top  .content .slogan {
	display: flex;
	align-items: center;
	font-family: 'Vujahday Script', cursive;
	font-size: 60px;
	color: #0f0;
	justify-content: center;
	opacity: 60%;
}

.section-body {
	width: 100%;
	justify-content: space-around;
	align-items: center;
}

.section-body .content {
	display: flex;
	width: 100%;
	align-items: center;
}

.section-body .content .box {
	background: rgba(64,255,64,0.2);
	margin-left: 100px;
	margin-right: 100px;
	padding: 20px;
	border-radius: 10px;
	margin-bottom: 20px;
	width: 100%;
	display: grid;
	grid-template-columns: 1fr 3fr;
	grid-gap: 20px;
	vertical-align: center;
	text-align: center;
}

.section-body .content .box table{
	width: 100%;
	border: 2px hidden;
}

.section-body .content .box table th,td{
	background: rgba(128,196,128,0.2);
	border: 2px solid rgba(0,0,0,0);
	padding: 5px;
	vertical-align: top;
	text-align: left;	
}
.section-body .content .box table th{
	background: rgba(128,196,128,0.4);
	font-weight: bold;	
}
.section-body .content .box table tr:hover{
	background: rgba(128,196,128,0.5);
}

.section-body .content .box ul {
	font-family: 'Farsan', cursive;
	font-size: 18px;
	margin-bottom: 20px;
}

.section-body .content .box .left-right {
	display: grid;
	grid-gap: 20px;
	grid-template-columns: 1fr;
	align-self: center;
	justify-self: center;
}
.section-body .content .box .top-bottom {
	display: grid;
	grid-gap: 5px;
	grid-template-columns: 1fr;
	align-self: center;
	justify-self: center;
}

.section-body .content .quotes {
	position: relative;
	background: rgba(200,200,255,0.6);
	padding: 20px;
	border-radius: 5px;
	margin-bottom: 40px;
	width: 100%;
	margin-left: 50px;
	margin-right: 50px;
	font-family: 'Farsan', cursive;
	font-size: 16px;
	color: #333;
	text-align: center;
	display: grid;
	grid-gap: 10px;
	grid-template-columns: 1fr;
}
.section-body .content .quotes .top-bottom {
	display: grid;
	grid-gap: 15px;
	grid-template-columns: auto auto auto;
	align-self: center;
	justify-self: center;
}

.section-body .content .quote {
	background: rgba(255,255,255,0.2);
	border-radius: 5px;
	padding: 15px;
	justify-content: space-around;
	align-self: center;
}

.menu {
	border-top: rgba(255,255,255,0.6) 1px solid;
	border-bottom: rgba(255,255,255,0.6) 1px solid;
	background: rgba(200,200,255,0.2);
	padding: 10px;
	margin-bottom: 20px;
}
.menu ul {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.menu ul li {
	margin: 15px;
}

.footer {
	border-top: rgba(255,255,255,0.6) 1px solid;
	background: rgba(255,255,255,0.2);
	padding: 30px;
	margin-top: 20px;
}
.footer ul {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
}
.footer ul li {
	margin: 15px;
}

.border-button {
	border: 1px solid;
	border-radius: 5px;
}

.bold {
	font-weight: 700;
}

.large-text {
	font-size: 20px;
}

.heading {
	font-family: 'Charm', cursive;
}

.heavy {
	font-family: 'Suez One', serif;
}

.comment {
	font-family: 'Farsan', cursive;
}