*{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 screen and (max-width: 480px) {

    article {
        margin: 10px;
        padding: 10px;
        height: auto;
    }

    .portada {
        width: 90%;
        left: 0;
        margin: 0 auto;
        display: block;
        height: auto;
    }

    .datos,
    .sinopsis {
        width: 90%;
        left: 0;
        bottom: 0;
        margin: 10px auto;
        position: static;
    }

    .sinopsis {
        font-size: small; 
    }

    iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 16 / 9;  
        margin: 0 auto;
        padding: 0;
        display: block;
        position: static;      
    }

     p {
        text-align: left;
        font-size: large;
    }

    
       h1 {text-align: center;
        font-size: large;
    } 
}