* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

.header {
	margin: 0%;
	height: 7em;
	background: #100a1f;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

input{
	height: 30px;
	background-color: #2a2044b4;
	color: white;
	font-weight: 600;
}
.letra{
	font-weight: 600;
	font-family: 'Montserrat', sans-serif;
	color: #fff;
	text-transform: uppercase;
	float: left;
	margin-right: 100px;
}

body {
	font-family: 'Montserrat', sans-serif;
	background: #e0e0e0;
	color: #1d1d1d;
}

.contenedor {
	width: 90%;
	max-width: 1000px;
	margin: 40px auto 100px auto;
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 40px;
}

.contenedor .pelicula {
	text-align: center;
}

.contenedor .pelicula .titulo {
	font-size: 16px;
	font-weight: 600;
}

.contenedor .pelicula .poster {
	width: 100%;
	margin-bottom: 10px;
	border-radius: 15px;
}
.contenedor .pelicula .descripcion {
	padding: 1em;
	text-align: justify;
}
.contenedor .pelicula .dia {
	padding: 1em;
}

.footer {
	position: fixed;
	bottom: 0;
	background: #100a1f;
	width: 100%;
	display: flex;
	justify-content: center;
	gap: 20px;
	padding: 10px;
}

.footer button {
	cursor: pointer;
	border: none;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	height: 50px;
	width: 200px;
	background: #241744;
	color: #fff;
	border-radius: 100px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	transition: .3s ease all;
}
button {
	cursor: pointer;
	text-align: center;
	background: #241744;
	color: #fff;
	border-radius: 10px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 700;
	height: 50px;
	width: 130px;
}
button:hover {
	background: #137c32;
}

.footer button:hover {
	background: #137c32;
}
