body {
    background-color: #222;
    margin: 0;
}

#roll_button {
    background-color: transparent;
    background-repeat: no-repeat;
    border: none;
    cursor: pointer;
    overflow: hidden;
    outline: none;
    width: 100px;
    height: 100px;
}

#container {
    margin-top: 10px;
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: center;
}

#status {
    margin-top: 100px;
    width: 300px;
    height: max-content;
    padding: 10px;
    background-color: white;
    border-radius: 10px;
    position: absolute;
    box-shadow: 0px 4px 20px 8px;
}

#status_label {
    width: 100%;
    color: #222;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 1.2em;
    text-align: center;
    pointer-events: none;
}

#drawing_canvas {
    width: 100%;
    max-width: 640px;
}

@media only screen and (min-width: 800px) {
    #container {
        width: 100%;
        height: 640px;
        display: flex;
        flex-flow: row wrap;
        align-items: center;
        justify-content: center;
    }

    .centered {
        position: absolute;
        margin: auto;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }
}