

body {
    background: black;
    background-image: none;
    background-size: auto;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, #075dff17 2px, #0070ff08 2px),
        linear-gradient(to bottom, #042bff2e 1px, transparent 1px);
    position: relative;
    margin: 0;
    height: 100%;

}

.bg_over {
    mix-blend-mode: color-dodge;
    opacity: 0.5;
    height: 100%;
    width: 100%;
    position: absolute;
    left: -50%;
    object-fit: cover;
    z-index: -2;
}


.bg_bg {
    position: absolute;
    background: linear-gradient(#0087ff00, #0028ff1c, #0087ff00);
    width: 100%;
    height: 100%;
    z-index: -1;
}

.glow {
    text-shadow:
        0 0 5px #00ffff54,
        0 0 10px #00ffff54,
        0 0 20px #00ffff54,
        0 0 40px #00ffff54,
        0 0 80px #00ffff54;
}

.glow_link {
    color: lime;;
    text-shadow:
        0 0 5px #00ff4c5e,
        0 0 10px #00ff4c5e,
        0 0 20px #00ff4c5e,
        0 0 40px #00ff4c5e,
        0 0 80px #00ff4c5e;
}

h1 {
    color: aqua;
    text-align: center;
}

ul {
    padding: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

ul img {
    width: 256px;
    height: 256px;
    object-fit: cover;
    
    box-shadow:
        0 0 5px #00ff4c5e;
    border: solid 1px lime;
    transition: all 0.3s ease;
}




li {
    margin-bottom: 30px;
    list-style: none;

}

li a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    align-items: baseline;
    transition: all 0.3s ease;
}

li a:hover {
    padding-left: 10px;
    color: rgb(255, 0, 170);;
    text-shadow:
        0 0 5px #ff00dd5e,
        0 0 10px #ff00dd5e,
        0 0 20px #ff00dd5e,
        0 0 40px #ff00dd5e,
        0 0 80px #ff00dd5e;
}

li a:hover img {
    box-shadow:
        0 0 5px #ff00dd5e;
    border: solid 1px rgb(255, 0, 170)
}

