* {
    background: #dafcf0
}

div {
    font-family: Monospace;
}

.title {
    text-align: center;
    padding: 20px;
    font-size: 60px;
}

.mainContainer {
    display: flex;
    padding: 30px;
}

.sketchProperties {
    display: flex;
    margin-left: 240px;
    margin-top: -60px;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    padding: 20px;
}

.colorSliderText, .gridSliderText {
    padding: 10px;
    font-size: 25px;
}

#colorSlider {
    height: 5em;
    width: 5em;
}

#colorSlider:active {
    transform: translateY(4px);
}

button {
    font-family: Monospace;
    font-size: 2em;
    padding: 10px 24px;
    border-radius: 10px;
    border: none;
    color: white;
    background: #42a3ff;
    box-shadow: 0px 0px 1px 1px lightgrey;
}

button:hover {
    font-size: 2.05em;
    background: #69b6ff;
}

button:active {
    background: #69b6ff;
    transform: translateY(4px);
}

.etchContainer {
    display: grid;
    width: 600px;
    height: 600px;
    grid-template-columns: repeat(16, 1fr);
    justify-content: center;
    align-content: center;
    margin: auto;
    border: 1px solid grey;
    box-shadow: 0px 0px 2px 2px lightgrey;
    
}

.etchBox {
    background: white;
    border: 1px solid #F0F0F0;
}