
html, body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
    url("../foto/KFondo.jpg");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.detalles{
    margin: 3% 0 0 8%;
}
.bloqueIzquierda{
    color: white;
    margin: 50px 0 20px;
    padding: 20px;
}
.actores img{
    height: 60px;
    width: 55px;
    margin-right: 10px;
    cursor: pointer;
}
.bloqueIzquierda a{
    text-decoration: none;
    border-radius: 30px;
    padding: 7px 10px;
    margin-top: 35px;
    color: white;
    background-color: #107afd;
    font-weight: 600;
    display: inline-block;
    margin-right: 10px;
}
.logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 1rem;
    padding: 10px 15px;
}

.logo i {
    font-size: inherit;
    margin-right: 10px;
}

.pelicula {
    width: 50%;
    height: auto;
    display: block;
    box-shadow: -4px 4px 5px 0 black;
    margin-left: auto;
    margin-right: 0;
}
@media (max-width: 576px) {
    .detalles {
        margin: 3% 0 0 0;
        padding: 0 15px;
    }
    
    .pelicula {
        width: 50%;
        margin: 0 auto;
        display: block;
        margin-bottom: 15px;
    }
    
    .actores img {
        height: 50px;
        width: 45px;
    }
    .otrasPeliculas img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-top: 15px;
    box-shadow: -4px 4px 5px 0 black;
    cursor: pointer;
    transition: 1s;
}
}

.otrasPeliculas h3{
    color: white;
}

.otrasPeliculas img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    margin-top: 15px;
    box-shadow: -4px 4px 5px 0 black;
    cursor: pointer;
    transition: 1s;
}

.otrasPeliculas img:hover{
    transform: translateY(-10px);
}

.fondoheader{
    background-color: black;
}

.footer {
    width: 100%;
    margin: 0 auto;
    background-color: transparent; 
    color: white; 
    text-align: center;
    padding: 10px 0;
}
.footerBlanco{
    color: rgb(255, 81, 0);
}

.colorBlanco{
    color: white;
        }