/* Style for the play */

* {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin: 0;
    padding: 0;
    border-sizing : border-box;
}

p, input, button {
    margin: 5px;
}

main {
    width: 100%;
    height: 100vh;
    max-height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0;
}

#play-div {
    width: 100%;
    height: auto;
    max-height: 100vh;
    position: relative;
    inset: 0;
    background: black;
}

#taxt-layer {
    width: 100vw;
    height: 100vh;
    display: block;
}

#play-div img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

#her-image {
    opacity: 0.2;
    transition: opacity 0.1s ease-in-out;
}

#background-image {
    opacity: 0.2;
}




/* 64 */