body {
    background-color: brown;
}

h1 {
    text-align: center;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: goldenrod;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;

}

.sketchpad {
    background-color: white;
	position: relative;
	outline:2px solid #000;
	font-size: 0;
	height: 600px;
	width: 600px;
	padding: 0;
	border: none;
}

.box {
	margin:0;
	padding:0;
	border:none;
	outline: none;
	display:inline-block;
}

.controls {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

.color-picker {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#color {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100px;
    height: 100px;
    background-color: transparent;
    border: none;
    cursor: pointer;
}

#color::-webkit-color-swatch {
    border-radius: 15px;
    border: none;
}

#color::-moz-color-swatch {
    border-radius: 15px;
    border: none;
}

.size-picker {
    position: relative;
    margin: 0 auto 0 auto;
}

#size {
    height: 39px;
    -webkit-appearance: none;
    margin: 0;
    width: 100%;
    background-color: transparent;
}

#size:focus {
    outline: none;
}

#size::-webkit-slider-runnable-track {
    width: 100%;
    height: 6px;
    cursor: pointer;
    background: #ccc;
    border-radius: 2px;
    border: 2px solid #010101;
}

#size::-webkit-slider-thumb {
    box-shadow: 1px 1px 1px #000000;
    border: 1px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 15%;
    background: #ffffff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
}

#size:focus::-webkit-slider-runnable-track {
    background: #ccc;
}

#size::-moz-range-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    background: #ccc;
    border-radius: 1.3px;
    border: 2px solid #010101;
}

#size::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000;
    border: 1px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 0%;
    background: #ffffff;
    cursor: pointer;
}

#size::-ms-track {
    width: 100%;
    height: 5px;
    cursor: pointer;
    animation: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}

#size::-ms-fill-lower {
    background: #2a6495;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000;
}

#size::-ms-fill-upper {
    background: #2a6495;
    border: 0.2px solid #010101;
    border-radius: 2.6px;
    box-shadow: 1px 1px 1px #000000;
}

#size::-ms-thumb {
    margin-top: 1px;
    box-shadow: 1px 1px 1px #000000;
    border: 1px solid #000000;
    height: 20px;
    width: 20px;
    border-radius: 0%;
    background: #ffffff;
    cursor: pointer;
}

#size:focus::-ms-fill-lower {
    background: #ccc;
}

#size:focus::-ms-fill-upper {
    background: #ccc;
}

#value {
    background: black;
    color: white;
    padding: 4px 12px;
    margin-top: 33px;
    position: absolute;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
}

#value:after {
    content: "";
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgb(0, 0, 0);
    top: -1px;
    left: 50%;
}

#eraser {
    height: 39px;
    margin: 10px 0;
    width: 100%;
    background-color: transparent;
    border-radius: 15px;
}

#clear {
    height: 39px;
    margin: 10px 0;
    width: 100%;
    background-color: transparent;
    border-radius: 15px;
}

img {
    height: 25px;
    width: 25px;
}




