HTML
<div class="container">
<article class="articles">
<div class="div">
    <h3>Заголовок</h3>
    <p>Описание.</p>
    <img src="./img/1.JPG" alt="1">
</div>
</article>
<aside class="sidebar">
<aside>
</div>
CSS
.container {
    max-width: 1170px;
    margin: 0 auto;
    background-color: #fff;
}
.articles {
    width: 71%;
}
.div {
    display: flex;
    flex-direction: column;
    align-items: center;    
    width: auto;
    height: auto;
    margin-top: 100px;
    text-align: center;
}
.div h3 {
    margin-bottom: 20px;
}
.div p {
    margin-bottom: 20px;
}
.div img {
    display: block;
    max-width: 100%;
    margin-bottom: 50px;
}
.sidebar {
    width: 25%;
}