*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html{
	font-size: 10px;
	font-family: "Roboto Cn", sans-serif;
}

body{
	overflow-x: hidden;
}
	
a{
	text-decoration: none;
	color: #eee;
}

header{
	background-color: #000;
}	

.container{
		max-width: 120rem;
		width: 100%;
	
}



nav{
	padding-top: 2rem;
	padding-bottom: 2rem;
	display: flex;
	justify-content: space-between;
	text-transform: uppercase;
	font-size: 1.6rem;
	position: fixed;
	width: 100%;
	background-color: rgba(0, 0, 0, .8);
	
}



.brand{
	font-size: 4rem;
	font-weight: 300;
	transform: traslateX(-100rem);
	animation: slideIn .5s forwards;
	margin-left: 10px;
	font-family: chiller;
}

.brand span{
	color: yellow;
}

nav ul{
	display: flex;
}

nav ul li{
	list-style: none;
	transform: traslateX(100rem);
	animation: slideIn .5s forwards;
	margin-right: 10px;
	
	
}

nav ul li a{
	font-size: 1.2rem;
	padding: 1rem 0;
	margin: 0 2rem;
	position: relative;
	letter-spacing: 2px;	
}		

nav ul li a:last-child{
	margin-right: 0;
}

nav ul li a::before,
nav ul li a::after{
	content: '';
	position: absolute;
	width: 100%;
	height: 2px;
	background-color: yellow;
	left: 0;
	transform: scaleX(0);
	transition: all .5s;
}

nav ul li a::before{
	top: 0;
	transform-origin: left;
}

nav ul li a::after{
	bottom: 0;
	transform-origin: right;
}	

nav ul li a:hover::before,
nav ul li a:hover::after{
	transform: scaleX(1);
}	

.title{
	position: absolute;
	top: 50%;
	left: 23%;
	transform: translate(-50%.-50%);
	color: orange;
	font-family: chiller;
	font-size: 50px;
	
}	

@keyframes slideIn{
	0%{
		transform: translatex(250px);
	}
	100%{
		transform: translateX(0);
	}	
}		


