@charset "utf-8";
/* CSS Document */
/* General CSS */

body,html {
	
	width:100%;
	height:100%;
	margin:0px;
	padding:0px;
	font-family: "Roboto", sans-serif;
	font-size: 12px;
	font-weight: 700;	
}

header{
	margin:20px;
}

header a{
	color:#f1f1f1;
}

header h1{
    margin: 0 auto 0 0;
    letter-spacing: -1px;
    font-weight: bold;
    font-size: 1.65em;
    line-height: 1;
    display: inline-block;
	color:#fff;
	margin-top:5px;
}
/*DEMO CSS*/

body{

	position:relative;
	background: transparent url("background.jpg") no-repeat scroll center top / cover;
	overflow: hidden;
}

li a{
	position:absolute;
	top:-60px;
	color:#fff;
	/* Safari */
	-webkit-transform: rotate(-45deg);
	
	/* Firefox */
	-moz-transform: rotate(-45deg);
	
	/* IE */
	-ms-transform: rotate(-45deg);
	
	/* Opera */
	-o-transform: rotate(-45deg);
	
	/* Internet Explorer */
	filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
	width:100px;
	text-decoration:none;
	
}

ul{
	position:absolute;
 	top: 50%;
 	transform: translate(0%, -50%);;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	width:100%;
	padding-left:0px;


	
}

li:hover{
	background-color:#fff;
}

li {
	position:relative;
	text-decoration:none;
	list-style-type:none;
	width:20px;
	height:20px;
	border:5px solid #900;
	border-radius: 100%;
	display:inline-block;
	margin-right:20px;

}

li::before {
	content: "";
	display: block;
	width:25px;
	border-top:5px solid #900;
	border-bottom:5px solid #900;
	height:5px;
	margin-left:23px;
	margin-top:3px;
} 

li:last-child::before {
	display:none;
	
}

li:last-child {
	margin-right:0;
	
}