#game{
    background-image: url("../images/game1_bg.jpg");
    /* padding: 1.5rem 0 3.5rem 0; */
    padding: 0;
    background-size: cover;
    height: 100vh;
    /* padding: 0; */
}
#game .d-flex{
    height: 100%;
}
.game__wrapper{
    padding: .5rem;
    text-align: center;
}
.game__header{
    margin-bottom: 1.5rem;
    /* margin-bottom: 0; */
    display: inline-block;
    max-width: 70%;
}
.game__header img{
    max-width: 100%;
}
.game__content{
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
    box-shadow: 0px 0px 0px 0.5rem;
    border-radius: .1rem;
    -webkit-border-radius: .1rem;
    -moz-border-radius: .1rem;
    -ms-border-radius: .1rem;
    -o-border-radius: .1rem;
    margin: auto;
}
.game__content iframe{
    border: none;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
}
.game__close-btn{
    position: absolute;
    display: block;
    width: 35px;
    height: 35px;
    background-image: url("../images/btn_close.png");
    background-position: center;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 100%;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    z-index: 2;
    background-size: 60%;
    box-shadow: 0px 0px 0px 0.4rem #ffffff, 0px 0px 2rem 0.5rem rgb(0 0 0 / 35%);
    /* box-shadow: 0px 0px 0px 6px #ffffff, 0px 0px 2rem 10px rgb(0 0 0 / 35%); */
    top: -1.25rem;
    right: 1.25rem;
}