#container {
    position: fixed; /* Fixed positioning to cover the whole screen */
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1; /* Set z-index to -1 to ensure it stays behind other content */
}
#hero {
    position: relative;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(0px); /* Apply blur filter here */
    -webkit-backdrop-filter: blur(0px); /* For Safari */
    z-index: 2; /* Ensure it is above the container */
    overflow: auto; /* Allow content scrolling */
}
#overlay {
    transition: backdrop-filter 1.5s ease-in-out, -webkit-backdrop-filter 1.5s ease-in-out;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px); /* For Safari */
}

#overlay.blurred {
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px); /* For Safari */
}
@media (max-width: 992px) {
    #hero, section {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); 
}
}
section, .container {
    position: relative;
    z-index: 3; /* Same level as hero to stay above the overlay */
}
a {
    color: #8ff;
}

#menu {
    position: absolute;
    bottom: 20px;
    width: 100%;
    text-align: center;
}

.element {
    width: 185px;
    /*120px;*/
    height: 160px;
    box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.5);
    border: 1px solid rgba(127, 255, 255, 0.25);
    font-family: Helvetica, sans-serif;
    text-align: center;
    line-height: normal;
    cursor: default;
}

.element:hover {
    box-shadow: 0px 0px 12px rgba(0, 255, 255, 0.75);
    border: 1px solid rgba(127, 255, 255, 0.75);
}

.element .number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 12px;
    color: rgba(127, 255, 255, 0.75);
}

.element .symbol {
    position: absolute;
    top: 40px;
    left: 0px;
    right: 0px;
    font-size: 55px;
    /*60px;*/
    font-weight: bold;
    color: rgba(255, 255, 255, 0.75);
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.95);
}

.element .details {
    position: absolute;
    bottom: 15px;
    left: 0px;
    right: 0px;
    font-size: 12px;
    color: rgba(127, 255, 255, 0.75);
}

button {
    color: rgba(127, 255, 255, 0.75);
    background: transparent;
    outline: 1px solid rgba(127, 255, 255, 0.75);
    border: 0px;
    padding: 5px 10px;
    cursor: pointer;
}

button:hover {
    background-color: rgba(0, 255, 255, 0.5);
}

button:active {
    color: #000000;
    background-color: rgba(0, 255, 255, 0.75);
}
