/*remove all default browser spacing*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*viewport black background*/
html, body {
    width: 100%;
    height: 100%;
    background-color: black;
    overflow: hidden;
}

/*container fills entire screen*/
#container {
    width: 100vw;
    height: 100vh;

    display: flex;
    justify-content: center;
    align-items: center;
}

/*scene image*/
#scene {
    max-width: 100%;
    max-height: 100%;

    object-fit: contain;
    
    transition: opacity 1s ease-in-out;
    cursor: pointer;
}
