* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background-image: linear-gradient(to top, #c4c5c7 0%, #dcdddf 52%, #ebebeb 100%);
	color: #1d1d1d;
}
	


.contenedor {
	width: 90%;
	max-width: 1000px;
	margin: 40px auto 100px auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
	margin-top: 30px;
}

.header{
	margin-top: 10px;
	margin-left: 10px;
	text-decoration: overline;
}

.contenedor .pelicula {
	text-align: center;
}

.contenedor .pelicula .titulo {
	font-size: 16px;
	font-weight: 600;
}


.promedio{
	font-size: 12px;
	font-weight: 3600;
	color: #135caa;

}
p{
	font-size: 12px;
	font-weight: 300;
	color: rgb(134, 134, 134);
}
.contenedor .pelicula .poster {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 5px;
}

.paginacion {
	position: fixed;
	bottom: 0;
	background: #2B3A55;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 10px;
}


.paginacion button {
	cursor: pointer;
	border: none;
	border-radius: 5px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 50px;
	width: 200px;
	background: #476192;
	color: #fff;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	transition: .3s ease all;
}

.paginacion button:hover {
	background: #144272;
}

.menu{
	background-color: #2B3A55;
	height: 60px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;

}

.logo{
	color: #fff;
	font-size: 30px;
	padding: 0 80px;
	font-weight: bold;
}

.menu-item{
	display: flex;
	flex-direction: row;
	list-style: none;
	margin-right: 30px;

}

.menu-item li{
	border-radius: 3px;
	margin: 0 5px;
}

.menu-item li:hover, li.active{
	background-color: #476192;
	transition: .4s;
	
}


.menu-item li a{
	padding: 7px;
	text-decoration: none;
	font-size: 13px;
	display: block;
	text-transform: uppercase;
	color: #fff;
}

.btn-menu{
	margin-right: 30px;
	font-size: 25px;
	color: #fff;
	cursor: pointer;
	display: none;

}

.btn-menu img{
	width: 25px;
	height: 25px;
}

ul.show {
	top: 65px;
}

@media screen and (max-width:952px) {
	.logo{
		font-size: 30px;
		padding-left: 35px;
	}

	.menu li a{
		font-size: 16px;
	}
	
}

@media screen and (max-width:858px) {
	
	.contenedor{
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		
	
	}
	.menu{
		height: 65px;
	}
	.btn-menu{
		display: inline-flex;
	}

	.menu-item{
		position: fixed;
		width: 100%;
		height: 100%;
		background: #2B3A55;
		top: -100%;
		text-align: center;
		transition: all .4s;
		flex-direction: column;
	}

	.menu-item li{
		margin: 30px 0 0 0;
		line-height: 30px;
	}

	.menu ul li:hover{
		background: none;

	}

	.menu-item li a{
		font-size: 20px;
		color: #fff;
		font-weight: bold;
	}

	.menu-item li a:hover{
		color: #135caa;
	}

	.logo{
		font-size: 25px;
		padding-left: 20px;
	}


}

@media screen and (max-width:858px) and (orientation: landscape) {
	.menu-item li{
		margin: 5px 0 0 0;


	}
	.menu-item{
		overflow: scroll;
		height: calc(100% - 65px);
	}

	
}




