
.h5 {
	text-shadow: 2px 3px 3px rgba(97, 105, 120);
}

.bg {
	/* Location of the image */
	background-image:
    linear-gradient(to bottom, rgba(15, 13, 1, 0.18), rgba(30, 29, 19, 0.67)),
    url('../images/resizeimage.jpg');
  
	/* Image is centered vertically and horizontally at all times */
	background-position: center center;
  
	/* Image doesn't repeat */
	background-repeat: no-repeat;
  
	/* Makes the image fixed in the viewport so that it doesn't move when 
     the content height is greater than the image height */
	background-attachment: fixed;
  
	/* This is what makes the background image rescale based on its container's size */
	background-size: cover;
  
	/* Pick a solid background color that will be displayed while the background image is loading */
	background-color:#464646;
}

.header {
    background-color: rgba(48, 48, 48, 0.85);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
    filter: alpha(opacity=80);
    -moz-opacity: 0.80;
    -khtml-opacity: 0.8;
    opacity: 0.8;
    top: 0;
    left: 0;
    width: 100%;
    height: 75px;
    padding: 7px;
    margin: 0;
	font-family:initial;
}

.butang {
	border-radius: 50px;
	background-color: rgba(48, 48, 48, 0.85);
	border: 2px solid #0AB9A4;
	color: #0AB9A4;
	text-align: center;
	font-family: "Lucida Console", "Courier New", serif;
	font-size: 17px;
	padding: 5px;
	width: 115px;
	transition: all 0.5s;
	margin: 9px;
}

.butang:hover {
	background: #0AB9A4;
	color: white; 
	text-decoration: none;
}


.footer {
	
	display: block;
	padding: 8px;
	font-size: 11px;
	font-family: sans-serif;
	text-align: center;
	background-color: rgba(48, 48, 48, 0.85);
}
