/* dd.css */


html, body {
    margin: 0;
    height: 100%;
    /* min-height: 100%; */

    background-image: -ms-linear-gradient(top, #FFFFFF 0%, #800000 80%);

    /* Mozilla Firefox */
    background-image: -moz-linear-gradient(top, #FFFFFF 0%, #800000 80%);

    /* Opera */
    background-image: -o-linear-gradient(top, #FFFFFF 0%, #800000 80%);

    /* Webkit (Safari/Chrome 10) */
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #FFFFFF), color-stop(0.8, #800000));

    /* Webkit (Chrome 11+) */
    background-image: -webkit-linear-gradient(top, #FFFFFF 0%, #800000 80%);

    /* W3C Markup, IE10 Release Preview */
    background-image: linear-gradient(to bottom, #FFFFFF 0%, #800000 80%);
}

/* body   {
    height: 100%;
    margin: 0;
    background-color: #800000;
} */

#page {
    margin: 20px auto;
    padding-top: 20px;
    padding-bottom: 30px;
    width: 700px;
    min-height: 80%; 
    /* min-height: 90%; */
    background-color: #FF0000;
   -webkit-box-shadow: 5px 5px 20px #000000;
    /* webkit browser*/ 
   -moz-box-shadow: 5px 5px 20px #000000;
    /* firefox */ 
    box-shadow: 5px 5px 20px #000000;
}

hr {
  width:90%;
  margin: 0 auto;  
  text-align: center;
}
