* {
    font-family: monospace;
}

.test-div {
    color: brown;
}

.main-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    color: antiquewhite;
    border-color: yellowgreen;
    border-style: solid;
    border-width: 2px;
    background-color: rgb(47, 64, 255);
}

#info-div {
    padding-left: 20px;
}

.banner-image {
    height: 80px;
    width: 300px;
    margin-bottom: 20px;
}

#game {
    width: 400px;
    height: 500px;
    border: 1px solid black;
    background-image: url('https://karpverse.net/stars3.gif');
    margin: auto;   
    overflow: hidden;
    border-style: groove;
    border-color: dimgrey;
    border-width: 3px;
}

#block {
    width: 50px;
    height: 500px;
    /* background-color: rgb(0, 51, 255); */
    background-image: url('https://karpverse.net/block_texture.jpg');
    position: relative;
    left: 400px;
    animation: block 1.8s infinite linear;
}

@keyframes block {
    0%{left:400px}
    100%{left:-50px}
}

#hole {
    width: 50px;
    height: 150px;
    background-color: rgb(0, 0, 0);
    position: relative;
    left: 400px;
    top: -500px;
    animation: block 1.8s infinite linear;
}

#character {
    width: 40px;
    height: 25px;
    /* background-color: red; */
    background-image: url("https://karpverse.net/karpSprite.png");
    position: absolute;
    top: 100px;
    border-radius: 50%;
}


/* legacy CSS  */

#game-square {
    width: 400px;
    height: 500px;
    background-color: black;
    background-image: url('https://karpverse.net/stars3.gif');
    background-position: inherit;
    border-style: groove;
    border-color: dimgrey;
    border-width: 3px;
    /* background-image: url(); */
}