@supports (-webkit-touch-callout: none) {
    /* CSS specific to iOS devices */ 
    body {
        touch-action: manipulation;
    }

    @media only screen
    and (min-device-width: 390px)
    and (max-device-width : 480px) {
        /* Your Styles... */ 
        /* body {
            background-color: rgb(223, 94, 20) !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: 85px !important;
    }

    .trophy {
        margin-bottom: 60px !important;
    }

    @media only screen 
    and (min-device-width : 768px) 
    and (max-device-width : 1024px) 
    and (orientation:portrait) {
        /* body {
            background-color: rgb(97, 243, 0) !important;
        } */

        .qr {
            top: 205px !important;
            right: 18px !important;
        }

        .token {
            margin-bottom: -40px !important;
        }

        .trophy {
            margin-bottom: -60px !important;
        }
    }
  }