@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */ 
    /* body {
        background-color: blueviolet !important;
    } */

    #playerNameDisplay {
        border: 1px solid transparent;
    }

    .qr {
        top: 83px !important;
        right: 17px !important;
    }

    .token {
        margin-bottom: 90px !important;
    }

    .trophy {
        margin-bottom: 50px !important;
    }
    
    @media only screen 
    and (min-device-width: 390px)
    and (max-device-width: 480px) { 
        /* Your Styles... */ 
        /* body {
            background-color: blueviolet !important;
        } */
        #backgroundCertificate {
            width: 1200px !important;
            height: 800px;
            background-position: fixed !important;
            background-repeat: no-repeat;
        }

        .qr {
            top: 83px !important;
            right: 17px !important;
        }

        .token {
            margin-bottom: 80px !important;
        }
    }

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation:portrait) {
        /* body {
            background-color: rgb(119, 9, 209) !important;
        } */

        .token {
            margin-bottom: -40px !important;
        }

        .trophy {
            margin-bottom: -60px !important;
        }
    }

}