*{padding: 0;
    margin: 0;}
    
    body {background-color: black;
    }
    
    article {background-color: black;
    padding: 20px;
    margin: 20px;
    height: 700px;}
    
    .portada { height: 650px;
        width: 400px;
        position: relative;
        left: 100px;
        border: solid 3px gray;
    }
    
    .datos 
        {background-color: black;
            color:  coral ;
            width: 1000px;
            position: relative;
            left: 650px;
            bottom: 600px;
            margin: 10px;
            padding: 10px;
            line-height: 40px;
    }
    
    .sinopsis{background-color: black;
        color:  coral ;
        width: 1000px;
        position: relative;
        left: 650px;
        bottom: 600px;
        margin: 10px;
        padding: 10px;
        line-height: 25px;
    font-size: medium;
    }

    h1{ color:  coral ;
        text-align: center;
    }
    
    p{color:  coral ;
        font-size: x-large;
    }


    iframe {width: 1400px;
        height: 650px;
        margin: 30px;
        padding: 30px;
        position: relative;
        left: 150px;
    }

    
    footer {
        height: 50px;
        color: black;
    }

    

    @media (max-width: 880px) {
        article {
            height: auto;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 10px;
            margin: 10px;
        }
    
        .portada {
            width: 90%;
            max-width: 400px;
            height: auto;
            left: 0;
            position: static;
            margin-bottom: 20px;
        }
    
        .datos, .sinopsis {
            width: 90%;
            max-width: 600px;
            position: static;
            margin: 10px 0;
            text-align: center;
        }
    
         
        
    
        iframe {
            width: 90%;
            max-width: 600px;
            margin: 10px 0;
            position: static; 
        }
    }

    @media only screen and (max-width: 480px) {
    
    .portada {
        width: 90%;
        left: 5%;
        height: auto;
    }

    .datos,
    .sinopsis {
        width: 95%;
        left: auto;
        right: auto;
        bottom: 0;
        position: static;
        margin: 10px auto;
        padding: 10px;
    }

    .sinopsis {
        font-size: 0.3rem;   
        line-height: 1.2;     
        text-align: left;
    }

    iframe {
        width: 100%;
        left: 0;
        margin: 10px 0;
        padding: 0;
        height: 300px;
    }

    article {
        height: auto;
        margin: 10px;
        padding: 10px;
    }

    p {
        font-size: 1rem;
    }
}