* {
    margin: 0;
    padding: 0;
    text-align: center;
}

html,
body {
    height: 100%;
}

body {
    background-color: rgb(163, 186, 192);
}

h1 {
    color: white;
    font-family: sans-serif;
    font-size: xx-large;
    -webkit-text-stroke-width: 1.25px;
    -webkit-text-stroke-color: black;
}

.canvas {
    display: grid;
    width: 600px;
    height: 600px;
    margin-left: auto;
    margin-right: auto;
}

.pixel {
    border: 1px solid rgba(0, 0, 0, 0.1);
    background-color: white;
}

.level {
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 600px;
    margin: auto;
}

button,
input {
    margin: 10px;
}

button {
    width: 100px;
    height: 30px;
    border-radius: 20px;
    border: 2px solid black;
    background-color: white;
}

#colorPicker {
    width: 30px;
    height: 30px;
    -webkit-appearance: none;
    border: 2px solid black;
}

#colorPicker::-webkit-color-swatch-wrapper {
    padding: 0;
}

#colorPicker::-webkit-color-swatch {
    border: none;
}

.canvas {
    border: 3px solid black;
    padding: 0px;
}

#rangeSliderLabel {
    font-weight: bolder;
    font-family: sans-serif;
}
