﻿
.infinity-image {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 60vh; /* Wider image */
    opacity: 0.2;
    animation: electric 2s infinite;
    z-index: 0;
}

@keyframes electric {
    0%, 100% {
        filter: drop-shadow(0 0 10px #00ffff);
    }

    25% {
        filter: drop-shadow(0 0 20px #00ffff);
    }

    50% {
        filter: drop-shadow(0 0 15px #00ffcc);
    }

    75% {
        filter: drop-shadow(0 0 25px #00ffff);
    }
}

.hidden-navbar {
    display: none!important;
}

.pushterminal {
    padding-bottom:250px!important;
}
.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none!important;
   

}

    .carousel-control-next-icon:after {
        content: '>';
        color: rgba(121, 118, 118, 0.75);
        font-size:55px;
    }

    .carousel-control-prev-icon:after {
        content: '<';
        color: rgba(47, 44, 44, 0.75);
        font-size: 55px;
    }