Style Css
Style Css
header {
background-color: #34495e; /* Navy blue */
color: white;
padding: 20px;
text-align: center;
}
header h1 {
font-size: 2rem;
margin: 0;
}
main {
padding: 20px;
}
h2 {
color: #34495e; /* Darker navy for headings */
}
p{
line-height: 1.6;
}
footer {
text-align: center;
padding: 10px;
background-color: #34495e; /* Navy blue footer */
color: white;
position: sticky;
bottom: 0;
width: 100%;
}
button {
background-color: #f39c12; /* Yellow-orange for buttons */
color: white;
border: none;
padding: 10px 20px;
border-radius: 5px;
font-size: 1rem;
cursor: pointer;
}
button:hover {
background-color: #e67e22; /* Slightly darker orange on hover */
}
a{
text-decoration: none;
color: inherit;
}
a:hover {
color: #f39c12; /* Accent color for hover effects */
}