@font-face {
	font-family: 'Material Icons';
	font-style: normal;
	font-weight: normal;
	src: url('MaterialIcons-Regular.woff2') format('woff2');
}
html {
    background-color: #d29f07;
}
body {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.flex-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column wrap;
    --h: 100vmax;
    height: 100%;
}
.flex-container > div.draw-cells {
    font-size: calc((var(--h) / 35));
    background-color: DodgerBlue;
    margin: 2px;
    text-align: center;
    line-height: 1;
    padding: 8px;
}
.flex-container > div.draw-range {
    font-size: calc((var(--h) / 35));
    background-color: DodgerBlue;
    margin: 4px 2px 10px 2px;
    text-align: center;
    line-height: 1;
    padding: 8px;
}
.flex-container > div.draw-canvas {
    background-color: DodgerBlue;
    padding: 2px;
    width: 80vmin;
    height: 80vmin;
}

.button-small {
    font-size: calc((var(--h) / 35));
    color: black;
    background-color: #d0d0d0;
    border-radius: 10px;
}
.button-big {
    font-family: "Material Icons";
    font-size: calc((var(--h) / 24));
    text-align: center;
    color: black;
    background-color: #d0d0d0;
    width: 1.8em;
    height: 1.8em;
    border-radius: 10px;
}
