/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
a {
	text-decoration: none;
}

a:hover {
	cursor: default;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* Fonts */

@font-face {
	font-family: Cantarell;
	scr: url('fonts/Cantarell-Regular');
}

/*My Code*/

header {
	text-align: center;
	width: 100%;
	background-color: #58c02e;
}

header a img {
	height: 35px;
	margin: 20px auto 0;
}

header ul li {
	display: inline-block;
	margin: 15px 20px 20px;
}

header ul li a {
	color: white;
	font-family: Cantarell;
	font-size: 18px;
}

main {
	min-height: calc(100vh - 111px);
	margin: 0 auto;
	width: calc(100% - 80px);
	box-sizing: border-box;
	padding: 30px 0;
	font-family: Cantarell;
	color: #171717;
}

main div {
	margin: 30px auto 0;
	box-sizing: border-box;
}

main div h2 {
	font-size: 23px;
	font-weight: 600;
}

main div h3 {
	margin-top: 15px;
	font-weight: 600;
}
	
main h1 {
	font-size: 35px;
	font-weight: 600;
}

main p {
	font-size: 18px;
	margin: 5px auto;
}

footer {
	background-color: #171717;
	color: white;
	height: 40px;
}

footer p {
	line-height: 40px;
	text-align: center;
	font-size: 12px;
	font-family: Cantarell;
}

@media only screen and (min-width: 1024px) {
	header {
		text-align: left;
	}
	header a img {
		float: left;
		margin: 20px 0 20px 40px;
	}

	header ul {
		display: inline-block;
		float: right;
		margin-right: 20px;
	}

	header ul li {
		line-height: 70px;
		margin: 0px 20px 0px;
	}

	header::after {
		display: table;
		content: '';
		clear: both;
	}

	main {
		min-height: calc(100vh - 75px);
		max-width: 1024px;
	}

	main div {
		border: 1px solid #e1e1e1;
		float: left;
		width: 300px;
		height: 500px;
		padding: 30px 30px 15px;
	}

	main div.panggilan {
		margin: 30px 62px 0;
	}

	main::after {
		display: table;
		content: '';
		clear: both;
	}
}












