html {
    font-size: 14px;
    font-family: 'SF Pro Text' 
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
    position: relative;
    min-height: 100%;   
}

header {
    background-color: #282828 !important;
}

body {
    margin-bottom: 60px;
}

.non-decoration {
    text-decoration: none;
    text-decoration-color: none;
    text-decoration-line: none;
}

.wrapper {
    display: flex;
    flex-flow: wrap;
    justify-content: space-between;
    overflow-x: hidden;
    background-color: green;
    background-repeat: repeat;
}

.game-container {
    display: flex;
    flex: 1;
    height: 95vh;
    position: relative
}

    .game-container #screen, .game-container .frame {
        width: 100%;
        height: 95vh
    }

.below-game {
    font-size: 1rem;
    max-width: 66.666667%;
    padding-left: 150px;
    padding-right: 15px;
}

.side-view {
    display: flex;
    flex: 0 0 305px;
    flex-wrap: wrap;
    background-color: #111111 !important;
}

@media screen and (max-width:980px) {
    .below-game {
        font-size: 1rem;
        max-width: 90%;
        padding-left: 10px; 
        padding-right: 10px;
    }

    .game-container {
        flex: 1 1 100%;
        order: 1;
        height: 95vh
    }

        .game-container #screen, .game-container .frame {
            width: 100%;
            flex: 0 0 100%;
            height: 95vh
        }

    #playArea {
        margin-left: 20px
    }

    .side-view {
        flex: 0 0 305px;
        justify-content: space-between;
        order: 1
    }

    ._ap_apex_ad {
        display: flex;
        flex-wrap: wrap
    }

    .full-ad {
        order: 0
    }

    .vert-view {
        order: 3
    }

    .adsbygoogle {
        display: flex;
        flex-wrap: wrap
    }
}

@media screen and (min-width:1366px) {
    .side-view {
        flex: 0 0 305px
    }
}

.full-ad {
    display: flex;
    flex: 1 0 100%;
    order: 0;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #3d712d
}

@media screen and (max-width:980px) {
    .video-ad-bottom {
        display: block;
        height: 35vh
    }
}

@media screen and (max-width:980px) and (orientation:landscape) {
    .game-container {
        zoom: 50%;
        height: 180vh;
        grid-column-start: 1 !important;
        grid-column-end: 2 !important
    }

        .game-container #screen, .game-container .frame {
            width: 100%;
            flex: 1 1 100%;
            height: 180vh
        }

    .video-ad-bottom {
        display: none
    }
}

.navbar {
    padding-top: unset !important;
    padding-bottom: unset !important;
}

.nav-link {
    padding: unset;
    color: #DADADA !important;
}

.frame-painting {
    width: fit-content; /* Adjusts the width based on the content */
    padding: 12px; /* Space between the image and the border (like a painting frame) */
    background-color: white; /* The color of the frame */
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.5); /* Adds a shadow to give depth */
}

    .frame-painting img {
        display: block;
        max-width: 100%;
        height: auto; /* Ensures the image resizes while maintaining its aspect ratio */
        border: 1px solid #000; /* Thin black border around the image for a classic framed look */
    }
