* { margin: 0px; }
* { padding: 0px; }

html{ height: 100%; }

body{
    width: 75%;
    min-width: 1000px;
    height: 100%;
    margin: 0 auto 0 auto;
}

div.wrapper{
    background-color: lightgrey;                              /* заливку фона нужно производить именно в этом блочном элементе, если произвести в body, то зальётся вся область просмотра*/ 
    min-height: 1000px;
    height: 100%;
    padding: 50px;
    border-radius: 30px;
    box-sizing: border-box;                                     /* так включатся внутренние отступы и границы в значения ширины и высоты элемента */

}

div.wrapper header{
    background-color: lightblue;
    height: 100px;
    border-radius: 30px;
    box-sizing: border-box;
    font-size: 3em;
    text-align: center;
    line-height: 100px;
    border-left: 30px solid lightcyan;
    border-right: 30px solid lightcyan;
}

div.wrapper nav{
    background-color: lightblue;
    margin-top: 50px;
    text-align: center;
    width: 16.5%;
    height: 88%;
    border-radius: 30px;
    font-size: 2.5em;
    box-sizing: border-box;
    padding-top: 20px;  
    border-top: 30px solid lightcyan;
    border-bottom: 30px solid lightcyan;
    float: left
}

div.wrapper iframe{
    height: 88%;
    border-radius: 30px;
    margin-top: 50px;
    margin-left: 3%;
    min-width: 80%;
}

div.wrapper nav ul{
  list-style-type: none;  
  font-size: 0.65em;
  margin-top: 25px;
} 

div.wrapper nav ul li{
    padding-bottom: 10px;
}

div.wrapper nav ul li a{
    color: black;
    font-style: italic;
}

.download{
    position: fixed;   
    bottom: 0;
    right: 0;
    margin-right: 10em;
    margin-bottom: 10em;
}

.download a{
    color: blue;
}