body{
    background-image: url(../Peliculas/img.jpg);
    background-size: cover;
    background-position: center; 
    height: 100vh; 
    justify-content: center;
}

h1 {
    font-family: Georgia;
    color: #1a2b7e;
    margin: 10px;
    text-align: center;
    margin-top: 500px;
    font-size: 35px;
}

.peliculas {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.pelicula-checkbox img {
    width: 120px;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
    border: 3px solid transparent;

}

.detalles {
    font-family: sans-serif;
    color: azure;
    border: 2px solid #000000;
    padding: 20px;
    border-radius: 10px;
    background-color: #1a2b7e;
    max-width: 500px;
    margin: 20px auto; 
    display: flex;
    flex-direction: column;
    justify-content: center;
}

h2 {
    margin-top: 0;
}

button {
    padding: 5px 15px;
    margin-top: 10px;
    border: none;
    background-color: #105baa;
    color: white;
    border-radius: 5px;
    cursor: pointer;
}