* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #e0e0e0;
	color: #1d1d1d;
}

.titular {
    font-family: 'Montserrat', sans-serif;
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: center;
    font-weight: bold;
}

.contenedor {
	width: 80%;
	max-width: 900px;
	margin: 40px auto 100px auto;

	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}

.contenedor .pelicula {
	text-align: center;
}

.contenedor .pelicula .titulo {
	font-size: 16px;
	font-weight: bold;
    margin-bottom: 10px;
}

.descripcion {
    font-size: 12px;
}

.contenedor .pelicula .poster {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 15px;
}

.paginacion {
	position: fixed;
	bottom: 0;
	background: #100a1f;
	width: 100%;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	padding: 10px;
}

.paginacion button {
	cursor: pointer;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 45px;
	width: 180px;
	background: #f8f8f8;
	color: #000;
	border-radius: 80px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    font-size: 18px;
	transition: .3s ease all;
}

.paginacion button:hover {
	background: #8cfc41;
}