body {
    margin: 0;
    padding: 0;
    background-color: rgb(124, 226, 129);
    font-family: 'Inter';
}

.container {
    width: 80%;
    margin: auto;
    align-items: center;
    height: 100vh;
    display: flex;
    flex-direction: row;
    gap: 30px;
}

.colors {
    border-radius: 12px;
    width: 8%;
    height: 75%;
    background-color: white;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.input-canvas {
    border-radius: 12px;
    width: 80%;
    height: 75%;
    background-color: white;
    border: none;
}

.input-canvas canvas {
    width: 100%;
    height: 100%;
}

.tools {
    border-radius: 12px;
    width: 10%;
    height: 75%;
    background-color: white;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    justify-content: space-evenly;
}

.tools i {
    font-size: 1.2rem;
    cursor: pointer;
}

.colors .one {
    background-color:rgb(246, 161, 192);
    width: 60%;
    height: 10%;
    border-radius: 6px;
    cursor: pointer;
}
.colors .two {
    background-color: pink;
    width: 60%;
    height: 10%;
    border-radius: 6px;
    cursor: pointer;
}
.colors .three {
    background-color: rgb(255, 228, 232);
    width: 60%;
    height: 10%;
    border-radius: 6px;
    cursor: pointer;
}
.colors .four {
    background-color:  rgb(174, 230, 155);
    width: 60%;
    height: 10%;
    border-radius: 6px;
    cursor: pointer;
}
.colors .five {
    background-color: rgb(88, 159, 88) ;
    width: 60%;
    height: 10%;
    border-radius: 6px;
    cursor: pointer;
}

.colors .six {
    width: 60%;
    height: 10%;
    border-radius: 6px;
}

input[type="color"] {
	-webkit-appearance: none;
    border-radius: 6px;
	border: none;
	width: 100%;
	height: 100%;
    padding: 0;
    cursor: pointer;
}

input[type="color"]::-webkit-color-swatch-wrapper {
	padding: 0;
}

input[type="color"]::-webkit-color-swatch {
	border: none;
}

.finish {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.finish button {
    cursor: pointer;
    font-size: 0.9rem;
    border-radius: 6px;
    border: none;
    height: 42px;
    width: 90%;
    background-color: rgb(255, 228, 232);
}

.finish button:hover {
    background-color: #fcebee;
}

.inp-range {
    width: 90%;
}

input[type="range"] {
    -webkit-appearance: none;
    background: pink;
    cursor: pointer;
    width: 100%;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: black;
    height: 3px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    margin-top: -11px; 
    background-color: pink;
    height: 1.5rem;
    width: 1.5rem;    
    border-radius: 50%;
}
 

  