Untitled
unknown
plain_text
2 years ago
1.2 kB
5
Indexable
/* Reset some default styles */
body, h1, h2, p {
margin: 0;
padding: 0;
}
/* Style header and navigation */
header {
background-color: #1a1a1a;
color: #fff;
padding: 20px 0;
}
nav {
display: flex;
justify-content: space-between;
align-items: center;
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}
.logo {
font-size: 24px;
font-weight: bold;
}
.nav-links {
list-style: none;
display: flex;
}
.nav-links li {
margin-right: 20px;
}
.nav-links a {
text-decoration: none;
color: #fff;
transition: color 0.3s;
}
.nav-links a:hover {
color: #ffcc00;
}
/* Style the home section */
#home {
background-image: url('your-background-image.jpg');
background-size: cover;
text-align: center;
color: #fff;
padding: 100px 0;
}
#home h1 {
font-size: 36px;
margin-bottom: 20px;
}
#home p {
font-size: 18px;
margin-bottom: 40px;
}
.btn {
display: inline-block;
padding: 10px 20px;
background-color: #ffcc00;
color: #1a1a1a;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
}
/* Add more CSS styling for other sections as needed */
Editor is loading...