/* *{
    box-sizing: border-box;
} */

*{background-image: url(ping.png);}

.move-circle {
    background-color: rgb(97, 97, 97);
    width: 75px;
    height: 75px;
    border-radius: 75px;
    display: flex;
    flex-direction: column;
    /* border-radius: 100%; */
    animation: movecircle 2.5s infinite;
}

@keyframes movecircle{
    0% {
        background-color: rgb(126, 40, 40);
        transform: scale(0.5) translate(-100%, -100%);
    }
    20% {
        background-color: rgb(166, 59, 59);
        transform: translate(500px, 300px);
    }
    40% {
        background-color: rgb(166, 59, 59);
        transform: translate(750px, 100px);
    }

    60% {
        background-color: rgb(166, 59, 59);
        transform: translate(900px, 300px);
    }

    80% {
        background-color: rgb(166, 59, 59);
        transform: translate(1200px, 200px);
    }

    100% {
        background-color: rgb(166, 59, 59);
        transform: translate(1400px, 300px);
    }
}

.game {
    background-color: rgb(0, 0, 0);
    width: 1420px;
    height: 880px;
    position: absolute;
}

.right-box {
    background-color: rgb(0, 4, 255);
    /* border: 1px solid black; */
    width: 15px;
    height: 150px;
    left: 47px;
    top: 360px;
    position: absolute;
}

.left-box {
    background-color: rgb(255, 0, 0);
    /* border: 1px solid black; */
    width: 15px;
    height: 150px;
    right: 47px;
    top: 360px;
    position: absolute;
}

.table {
    display:flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
}