body {
    background-color: #007E6F;
    height: 100vh; 
    margin: 0;    
    display: flex;
    justify-content: center; 
    align-items: center;      
    font-family: "Tiny5", sans-serif;
    transition: background-color 1s ease;
}

.img-container {
    width: 150px;
    height: 150px;
    position: relative;  
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.globe-image {
    position: absolute;
    left: 0;
    top: 25px;
}

.computer-image {
    position: absolute;
    left: 100px;
    top: 3px;
}

.loading-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    background-color: blue;
    border-radius: 50%;
    top: 50px;
    left: 100%;
    animation: move-dot 2.8s linear infinite; /* Adjusted to repeat indefinitely */
}

@keyframes move-dot {
    0% {
        left: 100px;
        background-color: aqua;
    }
    50% {
        left: 55px;
        background-color: blue;
    }
    100% {
        left: 100px;
        background-color: aqua;
    }
}

.globe-image img {
    width: 50px;
    height: 50px;
}

.sm982-text{
    text-align: center;
    position: absolute;
    bottom: 50px;
    z-index: 999;
    text-align: center;
    margin-bottom: 50px;
    font-size: 20px;
}

.sm982{
    background-color: transparent;
    border-color: transparent;
    text-align: center;
    position: absolute;
    bottom: 0px;
}

.sm982-image{
    height: 80px;
    width: 80px;
}

.secret-text {
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    z-index: 1000;
    text-align: center;
    margin-top: 10px;
}