/* Простой скролл для перехода по ссылкам */
html {
scroll-behavior: smooth;
}
body {
font-family: sans-serif;
margin: 0;
text-align: center;
}
/* Фиксированная шапка */
header {
background: #333;
padding: 15px;
position: sticky;
top: 0;
}
nav a {
color: white;
margin: 0 15px;
text-decoration: none;
font-weight: bold;
}
/* Разделенные блоки (экраны) */
section {
padding: 60px 20px;
border-bottom: 2px solid #ddd;
}
img {
max-width: 100%;
height: auto;
border-radius: 8px;
}
/* Подвал с 3 разделами */
footer {
background: #222;
color: white;
display: flex;
justify-content: space-around;
padding: 20px;
}