body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #000; /* Fallback color in case the background image is not loaded */
    color: #fff; /* Change the text color to white */
    overflow: hidden; /* Hide scrollbars */
}

.header {
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 20px;
}

.title {
    font-size: 36px;
    margin-bottom: 10px;
}

.menu-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    position: relative;
}

.menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    backdrop-filter: blur(10px); /* Apply blur to the background behind the menu */
    background-color: rgba(255, 255, 255, 0.1); /* Adjust the alpha value for transparency */
    border-radius: 5px;
    padding: 20px; /* Add some padding for better aesthetics */
}

.menu-item {
    text-decoration: none;
    color: #fff; /* Change the text color to white */
    font-size: 18px;
    padding: 15px;
    margin: 10px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.menu-item:hover {
    background-color: #555; /* Change the hover background color as per your preference */
}

.about-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    z-index: 0;
    overflow: hidden;
    transition: height 0.3s; /* Add a smooth transition effect */
    background: url('site_images/trees.png') center/cover no-repeat; /* Adjust the path to the image */
    filter: blur(5px); /* Apply a slight blur to the background image */
}

.about-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 80%;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8); /* Adjust the alpha value for transparency */
    border-radius: 10px; /* Add border-radius for a bit of styling */
    text-align: center;
}

.about-link {
    cursor: pointer;
}

.about-link::after {
    content: '\25BC'; /* Unicode character for down arrow */
    display: inline-block;
    margin-left: 5px;
}

.about-link.open::after {
    content: '\25B2'; /* Unicode character for up arrow */
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: url('site_images/trees.jpg') center/cover no-repeat; /* Set background image properties */
    filter: blur(5px); /* Apply a slight blur to the background image */
}