/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Basic styling for the header */
header {
    background-color: #e05b1d;
    color: #fff;
    text-align: center;
    padding: 20px;
}

/* Style the logo */
.logo img {
    max-width: 100%;
    height: auto;
    max-height: 120px; /* Adjust as needed */
}

/* Style the heading */
h1 {
    font-size: 24px;
    margin-top: 0px;
}

/* Style the navigation menu */
nav ul {
    list-style-type: none;
    text-align: center;
	 margin-top: 20px;
	 
}

nav ul li {
    display: inline;
    margin: 0 10px;
	
}

/* Style the link images */
nav ul li a {
    text-decoration: none;
    display: inline-block;
    border-radius: 10%; /* Rounded corners */
    overflow: hidden; /* Hide overflowing parts of the image */
    width: 250px; /* Adjust the width as needed */
    height: 200px; /* Adjust the height as needed */
}

/* Style the link image hover effect */
nav ul li a:hover {
    border: 2px solid #333; /* Add a border on hover */
}

/* Style the link image itself */
nav ul li a img {
    max-width: 100%;
    height: auto;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain image aspect ratio and cover the entire link */
}


/* Style the image container */
.image-container {
    position: relative;
}

/* Style the subtitle */
.subtitle {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent background */
    color: #fff;
    padding: 5px;
    text-align: center;
    opacity: 0; /* Hide the subtitle by default */
    transition: opacity 0.3s ease-in-out; /* Smooth fade-in transition */
}

/* Show the subtitle on hover */
.image-container:hover .subtitle {
    opacity: 1;
}

/* Style the footer */
footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
}









