Я разобрался надо все блоки section ввести в section с класом например main и сделать стиль
css
section {
background: black;
color: white;
border-radius: 1em;
padding: 1em;
border: 3px solid #fff; /* ����� ����� */
}
.menu {
top: 0%;
left: 100%;
}
.main {
background: black;
color: white;
border-radius: 1em;
padding: 1em;
border: 3px solid #fff; /* ����� ����� */
position: fixed;
top: 50%;
left: 50%;
margin-right: -50%;
transform: translate(-50%, -50%) }
}
html
<section class="main">
<section >
<h2>Меню</h2>
<a href="logout.php">
<button>Выйти</button>
</a>
</section>
<section>
<form action="newart.php" method="post">
<p>Название статьи:</p>
<input name="nameart">
<p>Текст статьи:</p>
<textarea name="text"></textarea>
<p>Текст ссылки в меню:</p>
<input name="menu">
<input type="submit" value="Добавить статью">
</form>
</section>
</section>
Результат