
.navbar a {
            color: aqua;
            text-decoration: dotted;
            padding: 14px 20px;
            display: inline-block;
            font-family: Arial, sans-serif;
        }

        .footer {
    margin: 0;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 20px;
    background-color: rgba(0, 0, 0, 0.6);
    color: white;
    text-align: center;
}


        body::before{
            content: "";
            position: fixed;
            inset: 0;
            background: inherit;
            transform: scaleX(-1);
            z-index: -1;
        }
        /*Hover Effect*/
        .navbar a:hover {
            background-color:none;
        }
        .comicNavSpacer{
            height: 50px;
        }


        /* dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu{
    position:absolute;
    top: 100%;
    left: auto;
    right: 0;
    list-style: none;
    background: rgba(58, 33, 68, 0.483);
    min-width: 175px;
    padding: 0;
    margin: 0;
    transform: translateY(-10px);
    z-index: 9999 !important;
    pointer-events: auto;

    opacity: 0;
    visibility: hidden;

   transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    visibility 0s linear 0.3s;

    /*glass*/
    background: rgba(40, 0, 68, 0.35);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 8px;

    box-shadow: 
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 255, 255, 0.1);

    cursor: pointer;
    overflow: hidden;
    z-index: 9999;
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap:10px;
    transform: translateY();

    padding: 12px 16px;
    color: white;
    text-decoration: none;

    transition: 0.2s ease;
    z-index: 9999;
    cursor: pointer;

}

.dropdown-menu a:hover {
    color: #fff;
    text-shadow:
        0 0 5px #00ffff,
        0 0 10px #00ffff,
        0 0 20px #00ffff,
        0 0 40px #00ffff;
}

.dropdown-menu.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);

    transition:         
        opacity .3s ease,
        transform .3s ease,
        visibility 0s;
}

.dropdown-menu img {
    position: relative;
    width: 30%;
    height: 30%;
    border-radius: 4px;
    max-width: 20px;
    max-height: 20px;
}
/**/
.box {
    max-width: 800px;
    width: 100%;
    border: none;
    padding: 10px;
    margin: 0 auto;
}


li{
    height: auto;
}

a img {
    width: 50px;
    height: 50px;
    transition: 0.3s;
}

.navbar {
    list-style: none;
    background-color: rgb(3, 0, 45);
    overflow: visible;
    position: fixed;
    top: 0;
    width: 100%;
    height: 60px;
    align-items: center;
    gap: 30px;
    justify-content: space-between;
    display: flex;
    padding: 1rem;
    box-sizing: border-box;
}

.navbar li{
    position: relative;
}

.navbar a {
    color: #00ffff;
    text-decoration: none;
    padding: 10px;
    display: block;
}


.subnavbar {
    height:40px;
    display:flex;
    align-items:center;
    justify-content:left;
    justify-content: space-between;
    padding:0 30%;
    background-color:rgba(40, 0, 68, 0.789);
    box-shadow:0 4px 10px rgba(15,15,15,0.7); 
}


.subnavbar a {
    text-decoration: solid;
    color: aqua;
    transition: all 0.25s ease;
}

.subnavbar a:hover {
    color: white;
    text-shadow: 
    0 0 8px #00ffff,
    0 0 16px #00ffff,
    0 0 32px #00ffff,
    0 0 64px #00ffff; 

}


.navicons {
    max-height: 60px;
    height: 40px;
    width: 135px;
    font-size: 1.5rem;
    display: flex;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}

.navicons img {
    height: auto;
    width: auto;
}