/* =========================
ОБЩАЯ СТРУКТУРА
========================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Georgia, serif;
font-size:15px;
line-height:1.6;
background-attachment:fixed;
}

/* контейнер */

.wrapper{
max-width:1200px;
margin:auto;
padding:20px;
}

/* =========================
Шапка
========================= */

.header{
text-align:center;
padding:60px 20px;
font-size:40px;
letter-spacing:4px;
font-weight:bold;
}

/* =========================
Меню
========================= */

.navbar{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:15px;
padding:15px;
border-radius:10px;
margin-bottom:20px;
}

.navbar a{
padding:8px 18px;
border-radius:6px;
font-weight:bold;
transition:0.3s;
}

/* =========================
Блоки форума
========================= */

.forumbit_post{
padding:15px;
margin-bottom:12px;
border-radius:10px;
backdrop-filter:blur(6px);
transition:0.2s;
}

.forumbit_post:hover{
transform:scale(1.01);
}

/* название форума */

.forumtitle{
font-size:20px;
font-weight:bold;
}

/* =========================
Темы
========================= */

.thread{
padding:12px;
margin-bottom:10px;
border-radius:10px;
transition:0.2s;
}

.thread:hover{
transform:scale(1.01);
}

/* =========================
Сообщения
========================= */

.post{
padding:18px;
margin-bottom:15px;
border-radius:10px;
}

/* профиль автора */

.author{
width:200px;
text-align:center;
}

.avatar img{
border-radius:8px;
max-width:120px;
}

/* =========================
Кнопки
========================= */

button,
input[type=submit]{
border:none;
padding:8px 16px;
border-radius:6px;
cursor:pointer;
transition:0.2s;
}

/* =========================
Таблицы
========================= */

table{
width:100%;
border-collapse:collapse;
}

td,th{
padding:10px;
}

/* =========================
Футер
========================= */

.footer{
text-align:center;
padding:25px;
margin-top:25px;
font-size:13px;
}

/* =========================
Мобильная версия
========================= */

@media(max-width:768px){

.wrapper{
width:95%;
}

.navbar{
flex-direction:column;
align-items:center;
}

.author{
width:100%;
margin-bottom:10px;
}

}