body {
    font-family: "Raleway", sans-serif;
    position: relative;
    /* Add this line */
    margin: 0;
    padding: 20px;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

body::before {
    content: "";
    /* Required for the pseudo-element */
    position: absolute;
    /* Position it absolutely */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("../assets/thailand_forest2_mid.webp");
    background-attachment: fixed;
    filter: blur(3px);
    /* Adjust the blur amount 
    /* Adjust the opacity */
    z-index: -1;
    /* Send it behind the content */
}

h1 {
    font-family: "Kanit", sans-serif;
    text-align: center;
    margin-bottom: 30px;
}

.map-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.year-section,
.month-section {
    width: 100%;
    margin-bottom: 30px;
}

.year-section h2,
.month-section h4 {
    margin-bottom: 10px;
}

.map-item {
    background-color: rgb(1, 68, 13);
    padding: 15px 20px;
    margin: 10px 0;
    text-align: center;
    width: 400px;
    border-radius: 5px;
    transition: transform 0.3s ease-in-out;
}

.map-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 2px 5px rgb(255, 255, 255);
}

.map-item a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
}

.map-item a:hover {
    color: rgb(0, 255, 30);
}