*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	transition: .3s;
}
body{
	background: #fbfbfb;
	width: 100%;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}
.card{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	color: #fff;
}
.imgbox{
	max-width: 350px;
}
.imgbox img{
	width: 100%;
	height: 100%;
}
.descr{
	max-width: 350px;
	background: #000;
	padding: 15px;
}
h2{
	font-size: 2.5em;
	text-align: center;
	text-transform: uppercase;
}
ul{
	display: flex;
	justify-content: space-around;
	align-items: center;
	list-style: none;
	margin: 10px 0;
	font-size: 22px;
	line-height: 22px;
}
.rating li:hover{
	color: #f00;
}
.textContent p{
	font-size: 1.2em;
}
.textContent a{
	display: inline-block;
	margin-top: 10px;
	font-size: 1.2em;
	text-decoration: none;
	color: #00ffff;
}
.textContent a:hover{
	color: #ff0;
}
button{
	margin: 10px 0;
	width: 100%;
	padding: 10px;
	border: 1px solid #00ffff;
	background: #000;
	color: #00ffff;
	font-size: 1em;
	border-radius: 5px;
	cursor: pointer;
}
button:hover{
	color: #000;
	background: #00ffff;
}
.trailer{
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0,0,0,.9);
	z-index: 10;
	visibility: hidden;
	opacity: 0;
}
.trailer video{
	max-width: 900px;
	outline: none;
	position: relative;
}
.close{
	position: absolute;
	top: 30px;
	right: 30px;
	color: #fff;
	font-size: 42px;
	cursor: pointer;
}
@media (max-width: 901px){
	.trailer video{
		max-width: 90%;
	}
}