html,body {
    height: 100%;
    width: 100%;
	margin: 0px;
    padding: 0px;
    overflow: hidden;
    color: #ffffff;
    background-color: #000000;
}

#wrapper {
    grid-template-rows: 1fr auto;
    background-color: #000000;
}

#mainArea {
    position: relative;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

#mainCanvas {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    user-select: none;
}

#configurationBox {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 12px;
    border: 1px solid #000000;
    color: #ffffff;
    text-shadow: 1px 1px 3px #000000;
    background-color: rgba(255,255,255,.05);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    display: none;
}

#configurationBox input[type="range"] {
    margin: 4px 0px;
    width: 100%;
}

#configHeader {
    text-align: center;
    font-size: 1.2em;
    font-weight: bold;
}

.configSubheader {
    margin-top: 12px;
    font-weight: bold;
}

#colorBoxHolder {
    text-align: center;
}

.colorBox {
    border: 1px solid #333333;
    height: 36px;
    width: 36px;
    border-radius: 36px;
    cursor: pointer;
    display: inline-block;
    margin: 6px;
}

#dbBackground {
    background-color: #000000;;
}

#dbForeground {
    background-color: #ffffff;;
}

#feature {
    position: absolute;
    bottom: 12px;
	right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    right: calc(12px + env(safe-area-inset-right));
    cursor: pointer;
}

#feature img {
	border-style: none;
	height: 58px;
	width: 58px;
	border-radius: 12px;
}

#settings {
	position: absolute;
	border-style: none;
	cursor: pointer;
	height: 58px;
	width: 58px;
	top: 12px;
    left: 12px;
    top: calc(12px + env(safe-area-inset-top));
    left: calc(12px + env(safe-area-inset-left));
    display: none;
}