mirror of
https://github.com/runyanjake/olomana.git
synced 2025-10-05 05:37:29 -07:00
134 lines
2.2 KiB
CSS
134 lines
2.2 KiB
CSS
body {
|
|
font-family: 'Roboto', sans-serif;
|
|
margin: 0;
|
|
padding: 0;
|
|
color: #333333;
|
|
line-height: 1.6;
|
|
}
|
|
|
|
.container {
|
|
width: 80%;
|
|
margin: 0 auto;
|
|
}
|
|
|
|
header {
|
|
background-color: #333333;
|
|
color: #FFFFFF;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
header .container {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
}
|
|
|
|
header .logo {
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-size: 1.5em;
|
|
font-weight: 600;
|
|
}
|
|
|
|
header nav ul {
|
|
list-style: none;
|
|
display: flex;
|
|
gap: 20px;
|
|
}
|
|
|
|
header nav ul li {
|
|
display: inline;
|
|
}
|
|
|
|
header nav ul li a {
|
|
color: #FFFFFF;
|
|
text-decoration: none;
|
|
font-weight: 500;
|
|
}
|
|
|
|
.nav-button {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background-color: #F5844C;
|
|
color: #240f0f;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.nav-button:hover {
|
|
background-color: #cf5416;
|
|
}
|
|
|
|
.hero {
|
|
background: #f4f4f4;
|
|
text-align: center;
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.hero h1 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-size: 2.5em;
|
|
margin: 0;
|
|
}
|
|
|
|
.hero p {
|
|
font-size: 1.2em;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.sub-section {
|
|
background: #f4f4f4;
|
|
text-align: center;
|
|
padding: 60px 0;
|
|
}
|
|
|
|
.sub-section h1 {
|
|
font-family: 'Montserrat', sans-serif;
|
|
font-size: 2.5em;
|
|
margin: 0;
|
|
}
|
|
|
|
.sub-section p {
|
|
font-size: 1.2em;
|
|
margin: 20px 0;
|
|
}
|
|
|
|
.cta-button {
|
|
display: inline-block;
|
|
padding: 10px 20px;
|
|
background-color: #F5844C;
|
|
color: #333333;
|
|
text-decoration: none;
|
|
font-weight: 600;
|
|
border-radius: 5px;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.cta-button:hover {
|
|
background-color: #e0a806;
|
|
}
|
|
|
|
footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background: #333333;
|
|
color: #ffffff;
|
|
text-align: center;
|
|
padding: 20px 0;
|
|
}
|
|
|
|
footer .social-media a {
|
|
color: #ffffff;
|
|
text-decoration: none;
|
|
margin: 0 10px;
|
|
}
|
|
|
|
footer .social-media a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
footer p {
|
|
margin: 0;
|
|
} |