*{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:   #dc7633 ;
            width: 1000px;
            position: relative;
            left: 650px;
            bottom: 600px;
            margin: 10px;
            padding: 10px;
            line-height: 40px;
    }
    
    .sinopsis{background-color: black;
        color:   #dc7633 ;
        width: 1000px;
        position: relative;
        left: 650px;
        bottom: 600px;
        margin: 10px;
        padding: 10px;
        line-height: 25px;
    font-size: large;
    }

    h1{ color:   #dc7633 ;
        text-align: center;
    }

    p{color:    #dc7633 ;
        font-size: x-large;
    }

    
    footer {
        height: 50px;
        color: black;
    }

    .div1 {
        position: relative;
        top: 100px;
    }

    @media screen and (max-width: 880px) {
        article {
            height: auto;
            padding: 10px;
            margin: 10px;
        }
    
        .portada {
            width: 90%;
            height: auto;
            left: 0;
            margin: 0 auto;
            display: block;
        }
    
        .datos, .sinopsis {
            width: 90%;
            left: 0;
            bottom: 0;
            margin: 20px auto;
            text-align: center;
        }
    
           }

    @media screen and (max-width: 480px) {
        article {
            padding: 5px;
            margin: 5px;
        }
    
        .portada {
            width: 100%;
            height: auto;
        }
    
        .datos, .sinopsis {
            width: 95%;
            font-size: medium;
            line-height: 20px;
            padding: 5px;
        }
    
        h1 {
            font-size: large;
        }
    
        p {
            font-size: medium;
        }
    
       
    
        .div1 {
            top: 50px;
        }
    }
    