html {
    font-size: 10px;
    font-family: Ubuntu;
}

html, body {
    height: 100%;
    width: 100%;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;

}

body {
    display: flex;
    flex-direction: column;
    background: black;
    overflow: hidden;
}


#art-container {
    position: relative;
    aspect-ratio: 400 / 225;
    margin: auto;
    width: 100%;
    height: auto;
}


/* If screen for device has aspect ratio of 16/9 or bigger the height will take up the full height of the screen 
and the widths will be automatically sized while filled with black */
@media screen and (min-aspect-ratio: 16/9){
    #art-container {
    width: auto;
    height: 100%;
    margin: auto;
    
    }
}

canvas {
    position: absolute;
    width: 100%;
    image-rendering: pixelated;
}

#bubble {
    position: fixed;
    z-index: 100000;
    background-color: white;
    font-size: 1rem;
    width: 32px;
    text-align: center;
}

#bubble svg {
    width: 24px;
}

