body {
    -webkit-touch-callout:none;
    -webkit-user-select:none;
    -khtml-user-select:none;
    -moz-user-select:none;
    -ms-user-select:none;
    user-select:none;
    -webkit-tap-highlight-color:rgba(0,0,0,0);
    height: 100%;
}

.paused {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* height: 800px; */
    /* border: 3px solid green; */
    background-color: #eeeeee;
}

.playing {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* height: 800px; */
    /* border: 3px solid green; */
    background-color: #cc0000;
}

.img-wrap {
    /* width: 80%; */
    height: 100%;
    position: relative;
    display: inline-block;
    overflow: visible;
    margin: 0;
}
  
div > img {
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    transform: translate(-50%, -50%);
}