body,
html {
    padding: 0;
    margin: 0;
    /* background: #fff;
    cursor: default;
    -webkit-tap-highlight-color: rgba(0, 0, 0, .12);
    user-select: none;
    box-sizing: border-box;
    height: 100%;
    overflow: hidden; */
}

body {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    box-sizing: border-box;
    transition: padding .5s ease;
    font-family: 'SF-Pro', sans-serif;
    transform: translate3d(0, 0, 0);
}
.content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-evenly;
    min-height: 100%;
    padding: 10px 20px 10px;
}

.game-item {
    box-sizing: border-box;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 5px;
}

@supports (padding: max(1px)) {
    .content {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

.game-icon {
    display: block;
    width: 300px;
    height: 300px;
    border-radius: 23%;
    box-sizing: border-box;
}

svg.game-icon {
    border: 1px solid #f4f5f7;
}

.heading {
    display: block;
    white-space: nowrap;
    margin: 10px auto 30px;
    font-family: 'Product Sans', sans-serif;
    font-size: 4vw;
    letter-spacing: -0.5px;
}

.cta-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 270px;
}

@media (max-width: 650px) {
    .heading {
        font-size: 8vw;
        margin: 3vw auto 5vw;
    }
}

@media (max-width: 460px) {
    .game-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-height: 450px) {
    .heading {
        font-size: 4vw;
    }

    .game-icon {
        width: 150px;
        height: 150px;
    }
}

@media (max-height: 450px) and (max-width: 480px) {
    .cta-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

.cta-button img{
    width: 125px;
    height: 40px;
}

.mobile-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background-color: #ffffff;
    display: none;
    flex-direction: row;
    flex-wrap: nowrap;
}
.mobile-icon {
    height: 50px;
    flex: 1;
    text-align: center;
    line-height: 63px;
}

.mobile-icon .btn {
    width: 25px;
    height: 25px;
    background: none;
    padding: 0;
    background-image: url("img/CLOSE.png");
    background-repeat: no-repeat;
    background-size: contain;
    margin: 0 auto;
    outline: none;
    border: none;
}

.mobile-text {
    flex: 4;
}

.mobile-text .mobile-logo {
    display: inline-block;
    margin-top: 5px;
    margin-left: 5px;
    width: 40px;
    height: 40px;
    background-image: url("../img/icon/icon152.png");
    background-repeat: no-repeat;
    background-size: contain;
}

.mobile-text .mobile-text-text {
    display: inline-block;
}

.mobile-text .mobile-text-text p {
    font-size: 12px;
    padding: 0;
    margin: 0 0 0 10px;
}

.mobile-text .mobile-text-text p:first-child {
    font-weight: bold;
}

.mobile-btn-box {
    flex: 1;
    text-align: center;
    vertical-align: middle;
}
.mobile-btn{
    width: 70px;
    height: 30px;
    font-size: 15px;
    color: white;
    background-color: #5b8edd;
    outline: none;
    border: none;
    border-color: #5b8edd;
    padding: 0;
    margin-top: 10px;
}