*{
    box-sizing:border-box;
}

canvas {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    /* position: absolute; */
    /* top:0; */
    /* left:0; */
    /* z-index: -1; */
    max-width: min(min(calc(100% - 50px), 100vw), 1000px);
    max-height: min(min(calc(100% - 50px), 100vh), 800px);
    /* margin:25px; */
}
.levelEditorCanvasTarget canvas{
    position: relative;
    z-index: 0;
}
#canvasTarget{
    background-color:#5A6637;
}
.centerCanvas{
    
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
}

.overlay{
    padding:25px 50px;;
    z-index: 1;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    display: flex;;
    flex-flow: row nowrap;
    justify-content: space-between;
    margin-top:20px;
}
.overlay h1{
    margin:0;
}

body {
    margin: 0;
    background-color: #5A6637;
    color:#1d2011;
    font-family: 'Bevellier', sans-serif;
}



button{
    background: #774044;
	color: inherit;
    padding:15px 30px;
	border: 1px solid #5E3235;
	
	font: inherit;
	cursor: pointer;
	outline: inherit;
}

#templates{
    display: none;
}
.hidden{
    display: none;
}
#inspectorItems{
    max-height: calc(100vh - 80px);
    overflow: auto;
}
.invalid{
    border:1px solid red;
}