* {
	padding: 0;
	margin: 0;
	font-family: monospace;
}

body {
	overflow: hidden;
	position: fixed;
	-webkit-overflow-scrolling: touch;
    background-color: #f1f1f1;
}

header {
    text-align: center;
}

#logo {
    margin-top: 10px;
    margin-bottom: 5px;
    image-rendering: pixelated;
}

#viewport-canvas {
    image-rendering: pixelated;
	width: 100vw;
	height: 90vh;
	background-color: #e0e0e0;
}

#title {
    text-align: center;
}

#color-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
}

.color-case {
    width: 20px;
    height: 20px;

    margin: 10px;
    border: 2px solid black;
    transition: 0.25s;
}

.selected {
    width: 30px;
    height: 30px;
    margin: 5px;
}

#main {
    display: flex;
    flex-direction: row;

}

#tools {
    display: flex;
    flex-direction: column;
    justify-content: center;

    margin-left: 10px;
    margin-right: 10px;
}

.tool-space {
    width: 40px;
    height: 40px;

    margin: 10px;
}

.tool {
    width: 40px;
    height : 40px;
    border: solid 1px black;

    text-align: center;

    margin: 10px;
}

.tool-selected {
    background-color: black;
    color: white;
}

@media (max-width: 1000px) {

    #tools {
        flex-direction: row;
    }

    #main {
        flex-direction: column;
    }
    
}