CSS Файл: style.css
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
}
/* Стили для навигационного бара */
.navbar {
display: flex;
justify-content: space-between;
padding: 20px;
background-color: rgba(255, 255, 255, 0.9);
position: fixed;
width: 100%;
top: 0;
z-index: 1000;
}
.navbar .logo {
font-size: 24px;
font-weight: bold;
}
.navbar .menu a {
margin-left: 20px;
text-decoration: none;
color: #333;
}
.navbar .menu a:hover {
color: #ff6347;
}
/* Основной блок с фоном */
.hero {
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background: url('background-image.jpg') no-repeat center center/cover;
color: white;
text-align: center;
padding: 20px;
margin-top: 60px;
}
.hero h1 {
font-size: 48px;
}
.hero p {
font-size: 18px;
margin: 20px 0;
}
.cta-button {
background-color: #ff6347;
color: white;
padding: 10px 20px;
text-decoration: none;
border-radius: 5px;
transition: background-color 0.3s;
}
.cta-button:hover {
background-color: #e55302;
}
/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
.hero h1 {
font-size: 36px;
}
.hero p {
font-size: 16px;
}
.cta-button {
padding: 8px 16px;
}
}
Объяснение:
-
HTML: