*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body{
    min-height: 100vh;
}

.title{
    text-align: center;
    font-size: 3rem;
}

.container{
    
    width: 1200px;
    height: 800px;
    display: flex;
    margin: auto;
}

.canvas{
    height: 800px;
    width: 1000px;
    border: 2px solid black;
    
}

.utilities{
    width:200px;
    height: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    border: 2px solid black;
}

.colors{
    width: 100%;
    height: 25%;
       
}

#color-input{
    width: 80%;
    height: 30px;
    border: none;
    margin: auto auto;
}

.color{
    width: 25%;
    height: 50px;
    margin-top: 0;
    float: left;
    transition:all ease-in 0.2s;
}



.color:hover{
    transform: scale(1.2);
}

#choosen-color{
    height: 50px;
    width: 50px;
    margin: 20px auto;
    
}

.brushes{
    margin-top: 10px;
    width: 100%;
    height: 40%;
    
}

.brush{
    min-width:25%;
    padding: 5px;
    min-height: 50px;
    float: left;
    display: flex;
    align-items: center;
    transition:all ease-in 0.2s;
}

.brush:hover{
    transform: scale(1.2);
}

.brush div{
    margin:  auto;
}

#choosen-brush{
    height: 10%;
    width: 100%;
    border-top: 1px solid black;
}



#clear{
    width: 200px;
    height: 50px;
    margin-top: 30px;
    margin-left: 50%;
    font-size: 1.3rem;
    transform: translateX(-50%);
    background-color: lightblue;
    border: none;
    border-radius: 10px;
    transition: all ease-in 0.2s;  
}

#clear:hover{
    background-color: rgb(107, 150, 165);

}