body {
    font-family: 'Roboto', sans-serif;
    /*background-image: url('/themes/december/img/background.jpg'); /* Updated path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed; /* Ensures the background is fixed during scrolling */
    margin: 0;
    padding: 0;
    height: 100vh; /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
}

.wifi {
    font-family: 'Roboto', sans-serif;
    color: #004400; /* Dark green color for text */
    /*background: linear-gradient(to bottom, #ffe9e9, #ffffff); /* Subtle pink to white gradient */
    /*border: 5px solid #004400; /* Solid green border */
    /*box-shadow: 0px 0px 15px 5px rgba(0, 68, 0, 0.6); /* Optional: green shadow for depth */
    /*border-radius: 15px; /* Rounded corners */
    padding: 20px;
    margin-top: 50px;
}

.wifi h1 {
    font-size: 36px; /* Larger font size for the title */
    margin-bottom: 20px;
}


.wifi p {
    font-size: 60px; /* Larger font size for other text */
    margin-bottom: 15px;
    font-weight: 700;
}

.wifi #password {
    font-size: 150px; /* Significantly larger font size for password */
    font-weight: 900;
    color: #004400;
    margin-top: 10px;
    padding: 10px 0; /* Add padding for better visibility */
}

#password {
    font-size: 80px; /* Large font size for visibility */
    font-weight: bold; /* Bold text for emphasis */
    color: #004400; /* Dark green for contrast on light background */
    padding: 10px;
    margin-top: 10px;
    /* border: 2px solid #004400; /* Optional: add a border */
    /* border-radius: 5px;
    background-color: #ffffff; /* Optional: background color for the password area */

}


#bgVideo {
    display: none; /* Initially hidden */
    position: fixed;
    top: 0;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Adjust for centering */
    height: 100vh;
    width: auto;
    object-fit: contain;
}

#snowCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Makes the canvas click-through */
    z-index: 999; /* Ensures it's above most content but below your top images */
}

#rolandCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Makes the canvas click-through */
    z-index: 900; /* Ensures it's above most content but below your top images */
}