html, body {
    height: 100%;
    margin: 0;
    background-color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: Arial, sans-serif;
}

.toplogo {
    width: 140px;     /* controls size */
    height: auto;
    display: block;
    margin: 0 auto;   /* centers it */
    padding-top: 30px; /* space from top */
}


.loading-bar {
    width: 200px;
    height: 10px;
    border: 1px solid white;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.loading-bar-inner {
    width: 50%;
    height: 100%;
    background: white;
    position: absolute;
    animation: flicker 1s infinite;
}

@keyframes flicker {
    0% { left: -50%; opacity: 0.2; }
    50% { left: 50%; opacity: 1; }
    100% { left: 100%; opacity: 0.2; }
}

.loading-text {
    font-size: 12px;
    letter-spacing: 1px;
    color: #ccc;
}

.footer {
    position: fixed;
    bottom: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
}

.footer a:hover img {
    opacity: 0.7;
}
