/* Плавная прокрутка страницы */
html {
scroll-behavior: smooth;
}
/* Общие стили темы (светлый и контрастный дизайн) */
body {
font-family: Arial, sans-serif;
margin: 0;
background-color: #f4f6f8;
color: #333333;
text-align: center;
}
/* Фиксированная шапка */
header {
background-color: #1e293b;
padding: 15px 40px;
position: sticky;
top: 0;
display: flex;
justify-content: space-between;
align-items: center;
border-bottom: 3px solid #0f172a;
}
header p {
margin: 0;
color: #ffffff;
font-weight: bold;
font-size: 20px;
}
/* Навигация */
nav a {
color: #ffffff;
margin-left: 20px;
text-decoration: none;
font-weight: bold;
transition: color 0.2s;
}
nav a:hover {
color: #38bdf8;
}
/* Блоки экранов */
section {
padding: 90px 20px;
border-bottom: 2px solid #e2e8f0;
background-color: #ffffff;
margin: 20px auto;
max-width: 900px;
border-radius: 8px;
}
h1, h2 {
color: #0f172a;
margin-bottom: 20px;
}
p {
font-size: 18px;
line-height: 1.6;
color: #475569;
}
/* Изображение с плоской рамкой */
img {
max-width: 100%;
height: auto;
border-radius: 6px;
border: 2px solid #cbd5e1;
margin: 20px 0;
}
/* Подвал сайта */
footer {
background-color: #0f172a;
color: #ffffff;
display: flex;
justify-content: space-around;
padding: 40px 20px;
margin-top: 40px;
}
footer div {
background-color: #1e293b;
padding: 20px;
border-radius: 6px;
width: 25%;
border: 1px solid #334155;
}
footer h3 {
margin-top: 0;
color: #38bdf8;
}
footer p {
color: #cbd5e1;
font-size: 14px;
margin: 5px 0;
}