* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
h1 {
  font-weight: bold;
  position: relative;
  top: 10px;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #e0e0e0;
  color: #1d1d1d;
  text-align: center;
}

.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;
}
.fot {
  color: #fff;
}
.fot a {
  color: aqua;
  text-decoration: none;
}
.paginacion {
  position: fixed;
  bottom: 0;
  background: #100a1f8a;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px;
  align-items: center;
}

.paginacion 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: 0.3s ease all;
  border: 1px solid white;
}

.paginacion button:hover {
  background: #137c32;
}

@media (max-width: 600px) {
  .contenedor {
    width: 100%;

    margin: 40px auto 100px auto;
    padding: 10px;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
  }
  h1 {
    font-weight: bold;
    position: relative;
    top: 16px;
  }
}
