.header1 {
    background: url('images/header.png');
    background-origin: content-box;
    background-position: left;
    background-repeat: no-repeat;
    background-size: contain;
    height: 200px;
    text-align: left;
    margin: 0 auto;
}

.header2 {
    background: url('images/scan1.png');
    background-origin: content-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 100px;
    text-align: center;
    margin: 0 auto;
}

.qr {
    background: url('images/qr.png');
    background-origin: content-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 275pt;
    text-align: center;
    margin: 0 auto;
}

.kibxnuks {
    background: url('images/kibxnuks.png');
    background-origin: content-box;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    height: 300px;
    width: 100%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    top: 0px;
}

.spin {
    -ms-transform: translateY(-160%);
    transform: translateY(-160%);
}

.winner {
    text-align: center;
    margin: 0 auto;
    align-items: center;
    font-size: 48pt;
    color: #0095da;     
    -ms-transform: translateY(-200%);
    transform: translateY(-200%);
}

img.wheel {
    animation-name: spin;
    animation-duration: 4000ms;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}

.btn {
    background-color: #00af9a;
    border: none;
}

.btn:hover,
.btn:active {
    background-color: #00af9a !important;
    border: none !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}


@keyframes wheel {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}