body {
    margin: 0;
    padding: 0;
}

span {
    font-style: italic;
}

    /* Контент */
.list-conteiner {
    display: inline-block;
    border-style: solid;
    border-width: 0.5px;
    padding-right: 20px;
}

.list-conteiner>p {
    text-align:center;
    font-weight: bold;
}

.img-conteiner {
    float:right;
    border-style: solid;
    border-width: 0.5px;
    padding: 5px;
    margin-left: 10px;
}

.img-conteiner>div {
    display:flex;
    align-items: center;
    flex-direction: column;
}

.logo-html{
    max-width:70px;
}

/* Верхняя нав.панель */
.nav-conteiner{
    display: flex;
    justify-content: space-between;
    background-color: aquamarine;
}

.nav-conteiner>nav>ul{
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-conteiner>nav>ul>li>a{
    display: block;
    padding: 10px;
    border-style: solid;
    border-width: 0.5px;
}

@media(max-width){
    .nav-conteiner{
        flex-direction: column;
    }
}

.text-page{
    padding-left: 15px;
}

.page{
    display: flex;
    justify-content: center;
}

.header{
    width: 7%;
    background-color:aqua;
}

.section{
    width: 89%;
}

.header>ol{
    list-style: none;
    border-bottom-style: solid;
    border-width: 0.5px;
    margin: 10px;
    padding: 0;
    padding-bottom: 10px;

}

.header>div{
    width: 100%;
}

.header>div>img{
    width: 100%;
}