* {
    padding: 0;
    margin: 0;
} 

body {
font-family: Verdana, Tahoma, Arial, sans-serif;
font-size: 15px;
padding: 0;
margin: 0;
color: #555;
line-height: 17px;
/*background: #1f6961;
background-image: url(bg.jpg);
background-repeat: repeat-x;
background-color: #549e15;*/
background-color: #ca5f17;
}


a { color: #CF9B00; text-decoration: none; }
a:hover { color: #333; text-decoration: underline; }

#wrap {
	width: 800px;
	margin: 0 auto;
	background: #fff;
	padding: 10px;
}

#header {
height: 220px;
background: #e9b211 url(images/banner.jpg) no-repeat;
line-height: 70px;
}
#header h1 {
color: #fff;
font-size: 35px;
padding-left: 20px;
text-decoration: none;
font-weight: 100; 
letter-spacing: -3px;
}
#header h1 a {
color: #fff;
text-decoration: none;
}
#header h1 a:hover {
color: #000;
}

#left {
float: left;
width: 520px;
margin-top: 20px;
margin-left: 10px; 
}
#left h2 {
color: #CF9B00;
font-size: 24px;
letter-spacing: -3px;
font-weight: 100;
margin: 0 0 10px 0;
}
#left h2 a {
color: #888;
}
#left h2 a:hover {
color: #CF9B00;
text-decoration: none;
}

#right {
	float: right;
	width: 235px;
	border: 1px solid #F6CA4B;
	background: #FFF7DF;
	margin-top: 48px;
	margin-right: 10px;
	font-size: 13px;
}
#right ul {
list-style-type: square;
color: #CF9B00;
padding: 0px 10px 10px 30px;
}
#right h2 { color: #333; font-size: 12px; padding: 10px 0 5px 10px;}

#footer {
margin: 20px 0 0 0;
text-align: center;
font-size: 11px;
background: #444;
color: #fff;
padding: 10px 0;
}
#footer a { color: #fff; }
#footer a:hover { color: #fff; text-decoration: underline; }


/* tombol */

.button-container {
  text-align: center;
}
.button {
  position: relative;
  background: currentColor;
  border: 1px solid transparent;
  font-size: 1.1rem;
  color: #bf7562;
  margin: 2rem 0;
  padding: 0.75rem 3rem;
  cursor: pointer;
  -webkit-transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  transition: background-color 0.28s ease, color 0.28s ease, box-shadow 0.28s ease;
  overflow: hidden;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.button span {
  color: #fff;
  position: relative;
  z-index: 1;
}
.button::before {
  content: '';
  position: absolute;
  background: #071017;
  border: 50vh solid #1d4567;
  width: 30vh;
  height: 30vh;
  border-radius: 50%;
  display: block;
  top: 50%;
  left: 50%;
  z-index: 0;
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
}
.button:hover {
  color: #b3100d;
  box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14), 0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}
.button:active::before, .button:focus::before {
  -webkit-transition: opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  transition: opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  transition: transform 1.12s ease, opacity 0.28s ease 0.364s;
  transition: transform 1.12s ease, opacity 0.28s ease 0.364s, -webkit-transform 1.12s ease;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  opacity: 0;
}
.button:focus {
  outline: none;
}
