2026-07-12 20:22:15 +01:00

59 lines
1.6 KiB
CSS
Executable File

body {
background-color: #f5f5dc;
margin-bottom: 100px; /* Add margin to prevent content from being hidden behind the footer */
}
.header {
background: url('../img/grass.jpg') no-repeat center center;
background-size: cover;
height: 200px;
display: flex;
align-items: center;
padding-left: 20px;
}
.header img {
height: 100px;
}
.navbar {
background-color: #556b2f;
padding: 15px;
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar-brand {
font-size: 1.5rem;
font-weight: bold;
}
.navbar-nav {
margin-left: auto;
}
.navbar a {
color: white !important;
font-weight: 600;
transition: color 0.3s ease-in-out;
}
.navbar a:hover {
color: #d2b48c !important;
}
.card {
background-color: #d2b48c;
}
/* Footer styles */
footer {
position: fixed;
bottom: 0;
left: 0;
width: 100%;
background-color: #556b2f;
color: white;
padding: 10px 20px;
display: flex;
justify-content: space-between;
align-items: center;
box-shadow: 0px -4px 6px rgba(0, 0, 0, 0.1);
}
footer a {
color: #d2b48c;
text-decoration: none;
}
footer a:hover {
text-decoration: underline;
}