*{
	margin: 0;
	padding: 0;
}
body{
	background-image: url(../img/bg6.jpg);
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;

}
.img:hover{
    color: #fff;
	background-color: #0ee80b;
}
h1{
	margin: 0;
	padding: 13px;
	text-align: center;
	color: #3859e0;
	font-family: sans-serif;
	letter-spacing: 1px;
	font-size: 20px;
	-webkit-text-fill-color: #3859e0;
	-webkit-text-stroke-width: 1px;
}
h2{
	margin: 0;
	text-align: center;
	font-family: sans-serif;
	color: #3859e0;
	letter-spacing: 1px;
	font-size: 14px;
	-webkit-text-fill-color: #3859e0;
	-webkit-text-stroke-width: 1px;
}
.btn {
  display: inline-block;
  box-shadow: 0 0 6px 4px #3859e0;
  border-radius: 20px;
  background-color: white;
  color: #3859e0; 
  border: 2px solid #3859e0;
  text-align: center;
  font-size: 22px;
  font-weight: 650;
  padding: 15px;
  width: 200px;
  margin: 10px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.3s;
  cursor: pointer;
  opacity: 0.8;
}

.btn:hover {
    background-color: #000;
    color: #e5be49;
	opacity: 1;
}

.btn span {
  cursor: pointer;
  display: inline-block;
  position: relative;
  transition: 0.3s;
  
}

.btn span:after {
  content: '\21B3';
  position: absolute;
  opacity: 0;
  top: 0;
  right: -20px;
  transition: 0.3s;
}

.btn:hover span {
  padding-right: 25px; 
}

.btn:hover span:after {
  opacity: 1;
  right: 0;

}

.table{
	border:0px solid #1947ff;
	width: 800px;
	margin: auto;
	box-shadow: 0 0 6px 3px #1947ff;
	border-radius: 20px;
	background:-moz-linear-gradient(top, #000 0%, #ef2554 100%);
	background:-webkit-linear-gradient(top, rgba(0, 0, 0, 0.8) 100%, #b29448 100%);
	background:-o-linear-gradient(top, rgba(0, 0, 0, 0.8) 100%, #91022f 100%);
	background:-ms-linear-gradient(top, rgba(0, 0, 0, 0.8) 100%, #91022f 100%);
	background:linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 100%, #91022f 100%);
	padding:0px 10px;
}
.daftar{
	text-align: center;
	padding: 20px;

}
p{
	color: #F0E68C;
	font-size: 11px;
	font-weight: bold;
}
b	{
	font-size: 13px;
	font-weight:bold;
	background: linear-gradient(-75deg, #85C1E9 25%, #F0E68C 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}
footer{
	color: #3859e0;
	font-size: 12px;
	font-weight: 600;
}
t{
	margin: 0;
	padding: 15px;
	text-align: center;
	color: #3859e0;
	font-family: sans-serif;
	font-weight: 600;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-size: 20px;
	-webkit-text-fill-color: #3859e0;
	-webkit-text-stroke-width: 1px;
}
.marquee {
 height: 50px;	
 overflow: hidden;
 position: relative;
}
.marquee h3 {
 position: absolute;
 width: 100%;
 height: 100%;
 margin: 0;
 line-height: 50px;
 text-align: left;
 color: #e5be49;
 /* Apply animation to this element */	
 -moz-animation: marquee 5s linear infinite alternate;
 -webkit-animation: marquee 5s linear infinite alternate;
 animation: marquee 5s linear infinite alternate;
}
/* Move it (define the animation) */
@-moz-keyframes marquee {
 0%   { -moz-transform: translateX(40%); }
 100% { -moz-transform: translateX(0%); }
}
@-webkit-keyframes marquee {
 0%   { -webkit-transform: translateX(40%); }
 100% { -webkit-transform: translateX(0%); }
}
@keyframes marquee {
 0%   { 
 -moz-transform: translateX(40%); /* Firefox bug fix */
 -webkit-transform: translateX(40%); /* Firefox bug fix */
 transform: translateX(40%); 		
 }
 100% { 
 -moz-transform: translateX(0%); /* Firefox bug fix */
 -webkit-transform: translateX(0%); /* Firefox bug fix */
 transform: translateX(0%); 
 }
}