* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding: 50px 0;
}

.main {
    font-family: 'StratosSkyeng', sans-serif;
    background-color: #D6D3CA;
    width: 1200px;
    padding: 40px 53px;
    margin: auto;
    box-shadow: 1px 1px 5px 1px grey;
}

.header {
    margin-bottom: 42px;
    border-top: 4px black;
    border-bottom: 4px solid black;
    text-align: center;
}

.header-date {
    text-align: right;
    font-size: 36px;
}

.header-title {
    font-size: 96px;
    font-style: italic;
    text-transform: uppercase;
}

.content {
    padding: 30px 51px;
    border: 4px solid black;
    margin-bottom: 37px;
}

.content-title {
    font-size: 64px;
    font-style: italic;
    text-align: center;
    margin-bottom: 55px;
}

.content-table {
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    unicode-bidi: isolate;
    border-spacing: 2px;
    border-color: gray;
}

.table-row {
    vertical-align: top;
}

.table-data {
    padding-right: 27px;
}

.table-data-text,
.table-data-text-last {
    font-size: 24px;
}

.table-data-text {
    margin-bottom: 41px;
}


img {
    width: 483px;
    height: 550px;
}

.advert-title {
    font-size: 36px;
    font-style: italic;
    font-weight: normal;
    border: 4px solid black;
    border-left: 0;
    border-right: 0;
    text-align: center;
}

.adverts {
    list-style-type: none;
    margin-top: 20px;
}

.advert-item {
    display: inline-block;
    vertical-align: top;
    width: 347px;
    margin-right: 22px;
}

/* :last-of-type - это псевдокласс, который выбирает самый последний элемент из всех элементов одного типа (соседних) */
.advert-item:last-of-type {
    margin-right: 0;
}