html,
body {
    margin: auto;
    padding: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background: #000;
    color: #fff;
    font: 21px monospace;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

canvas {
    display: block;
    max-width: 100%;
    max-height: 100%;
    min-width: 100%;
    min-height: 100%;
    bottom: 0;
    left: 0;
    margin: auto;
    overflow: auto;
    position: fixed;
    right: 0;
    top: 0;
    object-fit: contain;
    /* background: transparent; */
}

#overlay {
    position: fixed;
    display: none;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999;
}

#defaultCanvas0 {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}

#p5_loading1 {
    display: flex !important;
    flex-direction: column;
}


/* 
html,
body {
    margin: 0;
    padding: 0;
}

canvas {
    display: block;
} */