html{
    background-color: rgb(0, 0, 0);
}

body{
    display: flex;
    margin: 0;
    padding: 0;
    height: 95vh;
    justify-content: center;
    align-items: center;
    color: aqua;
    font-family: monospace;
    font-size: large;
}

.dot {
    opacity: 0; /* Initially set to be invisible */
    animation: fadeInOut 1.5s infinite; /* Animation duration and infinite loop */
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0; /* Start and end at invisible */
    }
    50% {
        opacity: 1; /* Visible at the middle of the animation */
    }
}