* {
    margin: 0;
    padding: 0;
}

@keyframes move-twink-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

@-webkit-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

@-moz-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

@-ms-keyframes move-twink-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -10000px 5000px;
    }
}

@keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 10000px 0;
    }
}

@-webkit-keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 10000px 0;
    }
}

@-moz-keyframes move-clouds-back {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 10000px 0;
    }
}

@-ms-keyframes move-clouds-back {
    from {
        background-position: 0;
    }

    to {
        background-position: 10000px 0;
    }
}

.stars,
.twinkling,
.clouds {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.stars {
    background: #000 url(http://www.script-tutorials.com/demos/360/images/stars.png) repeat top center;
    z-index: 0;
}

.twinkling {
    background: transparent url(http://www.script-tutorials.com/demos/360/images/twinkling.png) repeat top center;
    z-index: 1;

    -moz-animation: move-twink-back 600s linear infinite;
    -ms-animation: move-twink-back 600s linear infinite;
    -o-animation: move-twink-back 600s linear infinite;
    -webkit-animation: move-twink-back 600s linear infinite;
    animation: move-twink-back 600s linear infinite;
}

.clouds {
    background: transparent url(images/clouds.png) repeat top center;
    z-index: 3;

    -moz-animation: move-clouds-back 400s linear infinite;
    -ms-animation: move-clouds-back 400s linear infinite;
    -o-animation: move-clouds-back 400s linear infinite;
    -webkit-animation: move-clouds-back 400s linear infinite;
    animation: move-clouds-back 400s linear infinite;
}

.glass-container {
    position: absolute;
    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%);

    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);

    border-radius: 10px;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    min-width: 200px;
    min-height: 100px;
    animation: fadeIn 0.4s ease-in-out forwards;
    /* Apply fade-in animation */
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Your canvas styles */
#background-canvas {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    /* Additional styles */
}

@keyframes floatAnimation {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-200vh);
    }
}


.socialIcon {
    font-size: 160px !important;
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    text-decoration: none;
    z-index: 1000;
}

.socialIcon:hover {
    color: rgba(255, 255, 255, 1);
    transition: 0.3s;
    text-decoration: none;
}

a {
    text-decoration: none;
}


ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

li {
    padding-top: 18px;
    margin: 0;
    text-decoration: none;

    font-size: 13px;
    font-family: monospace;
}


.separator {
    display: inline-block;
    margin: 0 0.5em;
}

li a {
    text-decoration: none;
    color: #BBB;
}

li a:hover {
    text-decoration: none;
    color: #FFF;
}


a {
    text-decoration: none;
    color: #BBB;
}
 
.hide {
    display: none;
}

.hidden-until-loader {
    display: none;
}


#ip-address-container {
    padding-top: 14px;
    font-family: monospace;
    color: white;
    font-size: 9px;
}


.copy-text {
    cursor: pointer;
}

.popover {
    position: absolute;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    opacity: 0;
    visibility: hidden;
    white-space: nowrap; /* Prevent text wrapping */
    transition: opacity 0.3s ease-in-out;
}