.landing-page {
    background-image: url('../../uploads/img/bg.jpg'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative; /* Required for overlay */
}

a:link{
    text-decoration: none;
    text-align: center;
    color: #333;
}
.landing-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); /* Adjust the alpha value for overlay opacity */
    z-index: 1; /* Ensure the overlay is above the background */
}

.landing-content {
    text-align: center;
    z-index: 2; /* Ensure the content is above the overlay */
    position: relative; /* Required for z-index to work */
    width: 100%;
    padding: 0 15px;
}

.landing-content h1 {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.year-img{
    width: 360px;
}

/* Responsive styles */
@media (max-width: 768px) {
    ul {
        display: none;
    }
}

