/*...................................шапка, верхняя часть сайта*/

.wrapper{
    background-color:aqua;
    width:1000px;
    min-height:600px;                          /* высота странички */
    margin-left:80px;
    margin-right:80px;
    }
    
    header{
    background-color:red;
    width:996px;
    height:100px;
    border:2px outset darkred;
    /*position:fixed; зафиксировать элемент*/
    }
    
    .header-wrapper{
    background-color:orange;
    width:990px;
    height:90px;
    margin-left:5px;
    /* margin-down:10px; */
    }
    
    .header-wrapper-topLine{
    background-color:grey;
    height:10px;
    margin-top:2px;
    
    }
    
    
    .header-wrapper-leftImage{
    background-color:white;
    width:320px;
    height:80px;
    border-right:2px solid darkred;
    float:left;
    }
    
    .header-wrapper-upContent{
    background-color:green;
    height:30px;
    margin-top:1px;
    }
    
    .header-wrapper-middleLine{
    background-color:darkgreen;
    height:8px;
    }
    
    
    .header-wrapper-downContent{
    background-color:grey;
    height:25px;
    margin:2px 0px 0px 2px;
    border:4px inset grey;
    }
    
    
    .header-text{
    color:white;
    padding:2px;
    padding-left:10px;
    font-size:25px;
    float:left;
    
    }
    
    .header-wrapper-downcontent .header-text{
    color:aqua;
    padding: 0px 0px 5px 10px;
    
    }
    
    /*...................................статейка, основная часть сайта*/
    
    .content{
    background-color:gold;
    min-height:500px;             /*высота осн части*/
    float:left;
    width:800px;
    
    }
    
    .content-border{
    background-color:darkgrey;
    margin:5px;
    width: 786px;
    min-height:486px;
    border:2px solid darkred;
    
    }
    
    .content-header{
    background-color:yellow;
    height:30px;
    margin: 5px 5px 5px 5px;
    text-align:center;
    position:static;
    }
    
    .content-text{color:red}
    
    /* .content-image-left{} */
    
    /* .content-image-right{} */
    
    /* .content-section{} */
    
    /* .content-aticle{} */
    
    /* .content-footer{} */
    
    
    
    