/* sewsite.css */

*{box-sizing:border-box;}
.container{
    position:relative;
    margin:80px auto;
    width:1000px;
    height:1005px;
    border:dotted red 10px;
    padding:155px; 
    background-color:lightgrey;
}
/* body { border:dotted red 10px;
 /*border: dashed green 5px;
    border-width:15px;
    background-color:yellowgreen;*/

html {
    border: dashed green 5px;
    border-width:15px 10px;
    background-color:yellowgreen; 
}

body {
    border: dotted red 10px;
    border-width:15px 10px;
    background-color:blue;
   padding:20px; 
   margin:40px; 
}




h1 {
    text-align:center;
    background-color:orange;
    height:100px;
    width:800px;
    margin:5px sienna;
    
}
.header{
    position:absolute;
    text-align:center;
    top:5px;
    left:5px;
    right:5px;
    height:200px;
    border:dashed saddlebrown 5px;
    background-color:springgreen;
}

.left{
    position:absolute;
    top:200px;
    left:5px;
    height:600px;
    width:160px;
    border:inset orange 8px;
    background-color:yellow;
}

.right{
    position:absolute;
    top:200px;
    right:5px;
    height:600px;
    width:160px;
    border:inset orange 8px;
    background-color:aqua;
}

.content{
    position:absolute;
    text-align:center;
    top:200px; /* push down 200px */
    left:160px; /*push left 160px */
    width:660px;
    border-style: ridge saddlebrown;
    height:600px;
    background-color:lightgray;
}

.footer{
    position:absolute;
    text-align:center;
    top:800px;
    left:5px;
    right:5px;
    height:180px;
    border:dashed green 5px;
    background-color:sienna;
}


