main {
    display: flex;
    flex-direction: column;
}

.game {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.game-ready {
    width: 100%;
    background: linear-gradient(-45deg, #ee7752, #e73c7e, #23a6d5, #23d5ab) 0 0/300% 300%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    animation: 60s ease 0s infinite normal none running bs;
    flex: 1;
    min-height: 700px;
    margin-bottom: 20px;
}

.game-ready .img-box {
    width: 15%;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #ccc;
}

.game-ready .img-box::before {
    padding-top: 100%;
}

.game-ready .game-text {
    width: 50%;
    color: #fff;
    text-indent: 2em;
    font-size: 14px;
    margin: 0px 0 20px;
}

.cssbuttons-io-button {
    background: #000000;
    color: white;
    font-family: inherit;
    padding: 0.35em;
    padding-left: 1.2em;
    font-size: 17px;
    font-weight: 500;
    border-radius: 0.9em;
    border: none;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    box-shadow: inset 0 0 1.6em -0.6em #714da6;
    overflow: hidden;
    position: relative;
    height: 2.8em;
    padding-right: 3.3em;
    cursor: pointer;
}

.cssbuttons-io-button .icon {
    background: white;
    margin-left: 1em;
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.2em;
    width: 2.2em;
    border-radius: 0.7em;
    box-shadow: 0.1em 0.1em 0.6em 0.2em #7b52b9;
    right: 0.3em;
    transition: all 0.3s;
}

.cssbuttons-io-button:hover .icon {
    width: calc(100% - 0.6em);
}

.cssbuttons-io-button .icon svg {
    width: 1.1em;
    transition: transform 0.3s;
    color: #7b52b9;
}

.cssbuttons-io-button:hover .icon svg {
    transform: translateX(0.1em);
}

.cssbuttons-io-button:active .icon {
    transform: scale(0.95);
}

@media screen and (max-width:769px) {
    .game-ready {
        min-height: auto;
        padding: 10% 0;
    }

    .game-ready .img-box {
        width: 50%;
    }

    .game-ready .game-text {
        width: 90%;
    }
}

@keyframes bs {
    0% {
        background-position: 0 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}