body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    position: relative;
}

h1 {
    margin-bottom: 20px;
}

.category {
    margin-bottom: 30px;
}

.category-title {
    cursor: pointer;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.category-title:hover {
    background-color: #0056b3;
}

.category-title a {
    color: #fff;
}

.category-content {
    display: none;
}

.category.open .category-content {
    display: block;
}

.category-content p {
    margin-bottom: 10px;
}

.category-content ul {
    padding-left: 20px;
}

.category-content li {
    margin-bottom: 5px;
}

a {
    color: #007bff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

#menu-background-pattern {
    height: 100vh;
    width: 100vw;

    background-image: radial-gradient(
        rgb(255, 255, 255) 50%,
        transparent 3%
    );
    background-position: 0% 0%;
    background-size: 12vmin 12vmin;
}

#menu-background-image {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;

    background-image: url("./Background3.jpg");
    
    position: fixed;

    background-position: center center;
    background-size: 110vmax;
    opacity: 0.90;
    z-index: -1;
}

#menu-background-pattern {
    display: none; /* Hide the radial gradient */
}
