.game-container {
    position: relative;
    width: min(90vw, 100vh) !important;
    aspect-ratio: 2 / 1;
    max-height: 50vh;
    background-size: min(10vw, 10vh);
    background-repeat: repeat;
    background-position-x: 0px;
    border: 1px solid;
    border-color: var(--border-color);
    border-radius: var(--border-radius);
}

.player {
    position: absolute;
    top: 50%;
    left: 25%;
    width: 10%;
    aspect-ratio: 2 / 1;
    transform: rotate(0deg);
    margin: 0;
    padding: 0;
}

.obstacle {
    position: absolute;
    top: -500%;
    left: -500%;
    width: 5%;
    height: 150%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

.obstacle img {
    width: 100%;
    height: 37.5%;
}
