.container {
    max-width: 800px;
    width: 90%;
    margin: 0 auto;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #f5f5dc;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
    z-index: 1000; /* Ensure header is above other content */
}

header h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4em;
    color: #4a7c59; /* Creamy color for the title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.landing-body {
    background-image: url('img/background.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.year-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.year-list li {
    margin: 10px;
}

.year-list a {
    display: block;
    padding: 20px 40px;
    background-color: rgba(245, 245, 220, 0.8);
    color: #4a7c59;
    text-decoration: none;
    font-size: 2em;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.year-list a:hover {
    background-color: #f5f5dc;
    transform: scale(1.1);
}