25 lines
663 B
CSS
Executable File
25 lines
663 B
CSS
Executable File
/* Background Image */
|
|
body {
|
|
background-image: url('../img/background.jpg'); /* Add a background image */
|
|
background-size: cover;
|
|
background-position: center;
|
|
background-repeat: no-repeat;
|
|
min-height: 100vh;
|
|
margin-bottom: 100px; /* Add margin to prevent content from being hidden behind the footer */
|
|
}
|
|
|
|
/* Overlay for better readability */
|
|
.background-overlay {
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
min-height: calc(100vh - 120px); /* Adjust for navbar and footer */
|
|
padding-top: 20px;
|
|
}
|
|
|
|
/* Footer styling */
|
|
.footer {
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100%;
|
|
background-color: rgba(0, 0, 0, 0.8);
|
|
}
|