@charset "utf-8";
@import "image.css";
@import "controls.css";
@import "loader.css";

:root {
    --box-shadow:   rgba(0, 0, 0, 0.15) 0px 5px 10px, rgba(0, 0, 0, 0.2) 0px 2px 6px;
    --box-shadow-lg:rgba(0, 0, 0, 0.15) 0px 10px 20px, rgba(0, 0, 0, 0.2) 0px 6px 12px;
}

body {
    background-color: var(--primary);
}

.no-edge {
	border: 0;
	padding: 0;
	margin: 0;
}

#sol-container {
	position: absolute;
    display: flex;
    flex-direction: column;
	top: 0;
	left: 0;
    height: 100%;
    width: 100%;
	overflow: auto;
    font-family: 'Roboto Mono', monospace;
	color: var(--text);
}

#sol-container::-webkit-scrollbar {
    display: none;
}


#sol-info-container {
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

