@media (max-width: 960px) {
    body {
        background-image: url(images/bg/page_bg@1x.jpg);
    }
}

@media (min-width: 961px) and (max-width: 1920px) {
    body {
        background-image: url(images/bg/page_bg@2x.jpg);
    }
}

@media (min-width: 1921px) {
    body {
        background-image: url(images/bg/page_bg@3x.jpg);
    }
}

body {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    overflow-x: hidden;
    overflow-y: hidden;

    display: grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto auto;
    justify-items: center;
    align-items: center;
}

#steam-widget {
    display: block;
    width: calc(100% - 80px);
    max-width: 646px;
    margin: 20px 40px;
}

#bg_effect {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.363) 0%, rgba(0, 0, 0, 0.8) 100%);
    pointer-events: none;
    z-index: -1;
}