{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: arial, Helvetica, sans-serif;
}
body{
	background-color: gainsboro;
}
.main{
	max-width: 1080px;
	margin: 20px auto;
	background-color: white;
	padding: 15px;
	overflow: hidden;
}
header{
	background-color: crimson;
	color: white;	
	padding: 20px;
}
header h2{
	margin-bottom: 7px;
	font-size: 35px;
}
nav{
	max-width: 1080px;
}


.navbar ul{
	list-style-type: none;
	margin: 0;
	overflow: hidden;
	background-color: darkorange;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: bold; 
}
.navbar li{
	float: left;

}
.navbar li a{
	display: block;
	color: white;
	text-align: center;
	padding: 10px 20px;
	text-decoration: none;
}
.navbar li a:hover{
	background-color: red;
	transition: 2s;

}
.banner{
	margin-bottom: 15px
}
.banner img {
	display: block;
	width: 100%;
	height:330px;
}
.kotak{
	border: 1px solid gainsboro;
	padding: 10px;
	margin-bottom: 15px;

}
.kotak h3{
	background-color: crimson;
	color: white;
	text-align: center;
	padding: 10px;
	margin-bottom: 13px
}
.kotak img{
	display: block;
	width: 100%;
	margin-bottom: 10px;
}
.kotak p{
	margin-bottom: 10px
}
.sidebar{
	width: 250px;
	margin-right: 10px;
	float: left;
}
.tengah{
	width: 550px;
	margin-right: 10px;
	float: left;
}
.tengah h3{
	background: none;
	color: crimson;
	margin-bottom: 0;
}
.tanggal-posting{
	color: grey;
	text-align: right;
	font-size: 12px;
	margin-bottom: 10px;
	display:block;
}
.tombol{
	display: block;
	text-decoration: none;
	padding: 10px;
	width: 120px;
	color: white;
	border-radius: 5px;
	text-align: center;
}
.tombol :hover{
	background-color: black;
	transition-duration: 2s;
}
.tombol-pesan{
	background-color: grey;
}
.tombol-lengkap{
	background-color: darkorange;
}
.kanan {
	width: 250px;
	float: left;
}
.kanan,.sidebar,.tengah{
	margin-bottom: 15px;
}
footer{
	clear: both;
	background-color: crimson;
	color: white;
	padding: 15px;
	text-align: center;
}
.menu-artikel ul{
	list-style-type:none; 
}
.menu-artikel ul li a{
	text-decoration: none;
	display: block;
	padding: 13px;
	border-bottom: 1px solid gainsboro;
	margin-bottom: 12px;
	color: black;
}
.menu-artikel ul li a:hover{
	color: darkorange;
	border-bottom: 5px double chocolate;
	transition-duration: 2s;
}

