body {
    margin: 0 auto;
    font-family: Verdana;
    font-size: 18px;
    color: #232323;
    text-align: center;
    background-image: none !important;
    background: #55aaff;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    width: 100vw;
    height: 100vh;
}

.game_thumb_holder {
    width: 150px;
    height: 150px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background: #eee;
    font-size: 12px;
    font-weight: bold;
}

.game_thumb {
    width: 144px;
    max-height: 100px;
    border: none;
}

a {
    text-decoration: none;
    color: #000;
}

#game_frame {
    position: absolute;
    top: unset !important;
    margin-left: unset !important;
    border: 0px;
    width: 100vw !important;
    height: calc(100vw * 480 / 640) !important;
}

td {
    text-align: center;
    padding-right: 10px;
}

.throbber {
    position: relative;
    /*top: -120px;*/
    left: 40px;
    text-align: center;
    width: 50px;
    font-size: 18px;
    transform: rotate(19deg);
    color: yellow;
    text-shadow: 3px 3px 2px #222;
    animation: pulse 0.27s ease-in-out 0s infinite alternate;
}

@keyframes pulse {
    0% {
        transform: scale(1, 1) rotate(19deg);
    }
    100% {
        transform: scale(1.07, 1.07) rotate(19deg);
    }
}

@media (min-width: 100vh) {
    #game_frame {
        width: calc(100vh * 640 / 480) !important;
        height: 100vh !important;
    }
}
