html, body {
    height: 100vh;
    width: 100vw;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    /* background-color: #353535; */
    overflow: hidden;
}

#canvasRegn {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #353535;
    z-index: -1; 
}

h1 {
    color: rgb(255, 255, 255);
}

.smellyNick {
    position: absolute;
    bottom: 0;  
    width: 40vh;
    filter: sepia();
    cursor: pointer
}


