.division {
    background-color: #242424;
}

.div_hr2 {
    padding-top: 5% ;
}

.busquedaLb {
    width: 100%;
    font-size: large;
    background-color: #242424;
    padding-top: 5%;
    border-radius: 1px;
    color: white;
    padding-bottom: 70px;
    transition: all 1s;
}

.busquedaLb div, .busquedaLb div form {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.busquedaLb div label {
    font-size: larger;
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.busquedaLb div i {
    margin-left: 10px;
    cursor: pointer;
}

.busquedaLb input {
    width: 80%;
    background-color: rgb(70, 70, 70);
    padding-left: 10px;
    border: none;
    height: 30px;
    border-radius: 5px;
    outline: none;
    color: white;
    font-size: large;
}

.contenido {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

@media screen and (max-width: 460px) {
    .contenido {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    }   
}

.pelicula {
    height: auto;
}

.pelicula .imagen {
    width: 100%;
    height: 80%;
}

.pelicula .detalles {
    width: inherit;
    height: auto;
    padding: 5px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.pelicula .detalles span {
    width: 100%;
}

.bienvenida {
    background-image: url(https://images.unsplash.com/photo-1577985051167-0d49eec21977?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1025&q=80);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    height: 400px;
}

.degradado {
    background: linear-gradient(to top, #242424, transparent 50%);
    height: 100px;
    width: 100%;
    margin-top: -100px;
}

.bienvenida .titulos h1 {
    text-shadow: 10px 10px 50px black;
    font-size: 50px;
}

.divInputB {
    display: flex;
    flex-wrap: wrap;
}

.divInputB form{
    width: 100%;
}

@media screen and (max-width:700px){
    .bienvenida .titulos h1 {
        display: block;
        font-size: xx-large;
    }
}

.contenidoFooter .logo img {
    width: 50px;
}

.busquedas {
    display: none;
    width: 100%;
    max-width:90%;
    position: relative;
    margin: 0px;
    background-color: #308bcc;
}