* {
	margin: 0;
}

.header {
	*position: sticky;
	width: 100%;
	*height: 120px;
	*z-index: 2;
	display: grid;
	grid-template-columns: 1fr 4fr;
	box-sizing: border-box;
	*background-repeat: no-repeat;
	*background-size: 100% 100%;
	*background-position: top left;
}
.header .teks {
	*top: 0;
	width: 100%;
	box-sizing: border-box;
	padding: 10px 0;
	text-align: center;
	font-size: 2vw;
}
.teks a {
	text-decoration: none;
}
.header h2 {
	font-size: 5vw;
	margin-top: 0;
	margin-bottom: 0;
}
.header .logo {
	padding: 15px;
	box-sizing: border-box;
}

main {
	*position: absolute;
	*top: 130px;
	*height: 90%;
	*overflow: auto;
	*bottom: 30px;
	display: grid;
	grid-template-columns: 3fr 1fr;
	box-sizing: border-box;
	*background-color: #afa;
	*border-radius: 10px;
}
main h1 {
	text-align: center;
}
.contents {
	box-sizing: border-box;
	margin: 10px;
	padding: 10px;
	background-color: #dfd;
}
article {
	margin: 20px 10px;
	padding: 10px;
	background-color: white;
}
article h2 {
	color: white;
	background-color: green;
}
article h3 {
	color: blue;
}
aside section h2 {
	text-align: left;
	color: blue;
	background-color: lightgreen;
	font-size: 18px;
}
aside section h3 {
	text-align: left;
	color: green;
	font-size: 16px;
}
.feeds {
	box-sizing: border-box;
	*float: left;
	margin: 10px;
	background-color: #dfd;
	*border-radius: 20px;
}
section form {
	box-sizing: border-box;
	margin: 10px;
	padding: 10px;
	background-color: white;
}

form input, textarea {
	width: 100%;
	margin: 0 0 10px;
	padding: 5px 7px;
	box-sizing: border-box;
}

input[type='submit'] {
	width: auto;
	margin: 0;
	border-radius: 5px;
	color: white;
	background-color: red;
}
textarea {
	height: 150px;
}

.footer {
	position: fixed;
	bottom: 0;
	width: 100%;
	height: 20px;
	background-color: grey;
	text-align: center;
}

.about-section {
	padding: 50px;
	text-align: center;
	background-color: #474e5d;
	*#22aaaa;
	color: white;
}

.alert2 {
	position: fixed;
	left: 10px;
	*top: 50%;
	bottom: 25px;
	max-width: 300px;
	*transform: translate(-50%, -50%);
	font-size: 12px;
	opacity: 1;
	transition: opacity 0.6s;
}
.info2 {
	background-color: #00f2f2;
	color: black;
}

.error2 {
	background-color: #f20000;
	color: white;
}

*:required:invalid {
	background-color: #fee;
}

@media screen and (max-width: 700px) {
	.header {
		display: inline;
		background-image: url('/public/assets/img/leafy.png');
	}
	.header .teks {
		*position: static;
		left: 0;
		width: 100%;
		float: none;
		display: block;
		padding: 0 0;
		text-align: center;
	}
	.header .logo {
		width: 100%;
		padding: 0;
		//max-width: 50px;
		text-align: center;
	}
	.menu {
		float: none;
	}
	main {
		display: block;
	}
}
