/* Set the background image for the header */
.header {
background-image: url('https://rvrjcce.ac.in/ximage/RVR.jpg'); /* Replace this with your image URL */
background-size: cover; /* Ensures the image covers the entire element */
background-position: center; /* Centers the image */
height: 400px; /* Adjust this height as needed */
text-align: center;
color: white;
padding: 20px;
}
h1 {
color: white;
}
/* Styling for the footer */
footer {
background-color: #333;
color: white;
text-align: center;
padding: 10px;
position: relative;
bottom: 0;
width: 100%;
font-size: 14px;
margin-top: 20px; /* Adds some space between content and footer */
}
footer h1 {
color: white;
}
</style>