*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'poppins', sans-serif;
}
body{
	min-height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(0, 0, 1);
}
.main{
	position: relative;
	height: 90vh;
	width: 60%;
	display: flex;
	align-items: center;
	flex-direction: column;
	padding: 10px;
	background: rgba(255, 255, 255, 0.1);
	box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.1);
}
.item{
	display: flex;
	align-items: center;
	width: 100%;
	height: 125%;
	box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.1);
}
.item:not(:last-child):hover{
	box-shadow: 0.1px 8px 8px 2px rgba(0, 0, 0, 0.1);
}
.main .item:not(:first-child){
	margin-top: 20px;
}
.main .item:nth-child(2){
	margin-top: 40px;	
}
.main .item:first-child, .main .item:last-child{
	width: 100%;
	height: 10%;
}
.item .video{
	width: 25%;
	height: 100%;
	cursor: pointer;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}
.item .video video{
	width: 100%;
}
.item .video: hover ~ .detail{
	opacity: 0.6;
}
.item .detail{
	margin-left: 10px;
	padding: 0 15px 15px 15px;
	height: 100%;
	width: 75%;
	display: flex;
	flex-direction: column;
}
.item .detail{
	color: #fff;
}
.item .detail #tittle{
	text-decoration: none;
	margin-bottom: 10px;
	font-size: 25px;
	color: rgba(255, 255, 255, 0.9);
}
.item .detail #desc{
	color: rgba(255, 255, 255, 0.5);
}

.main .item:last-child{
	justify-content: space-between;
	padding: 0 10px;
	margin-top: 20px;
	box-shadow: none;
}
.main .item:last-child a{
	display: inline-block;
	padding: 8px 16px;
	cursor: pointer;
	text-decoration: none;
	color: #000;
	background: #ccc;
}
.main .item:last-child a:nth-child(1){
	margin-right: 10px;
}
.info p{
	color: #fff;
} 

.controlls a{
	text-decoration: none;
	cursor: pointer;
	font-size: 2em;
	background: none;
	color: #fff;
	border: none;
}
.item .video .controlls{
	width: 100%;
	height: 100%;
	z-index: 0;
	background: rgba(0, 0, 0, 0.7);
	position: absolute;
	display: flex;
	align-items: center;
	opacity: 0;
	transition: 0.2s;
}
.item .video:hover .controlls{
	z-index: 1;
	opacity: 1;
	transition: 0.2s;
}
.navbar{
	width: 100%;
	height: 50px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 10px;
}
.navbar .customize{
	display: flex;
	align-items: center;
	justify-content: center;
}
.navbar{
	color: #ccc;
	font-size: 1.8em;
}
.navbar .customize a{
	text-decoration: none;
	cursor: pointer;
	font-size: 5em;
	background: none;
	color: #fff;
	border: none;
}
.navbar .customize a:hover{
	opacity: 0.5;
}
.navbar .customize a:nth-child(1){
	margin-left: 15px;
}
#center_text{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%);
	font-size: 1.5em;
	color: #fff;
}