body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.main{
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
    background-color: black;
    display: flex;

}

.cells{
    display: grid;
    grid-template-columns: repeat(10, 40px);
    border: 1px solid black;
    gap: 0;
    height: fit-content;
}

.cell{
    border: 1px solid black;
    width: 40px;
    height: 40px;
    background-color: gray;
    margin: 0;
    padding: 0;
}

.cell:hover{
    opacity: 0.5;
}

.tools-cell{
    border: 1px solid black;
    width: 40px;
    height: 40px;
}

.red{
    background-color: red;
}

.active{
    border: 3px solid orange;

}

.green{
    background-color: green;
}

.blue{
    background-color: blue;
}

.white{
    background-color: white;
}

.violet{
    background-color: violet;
}

.lastik{
    background-color: white;
    border: 3px solid black;
}

.zalivka{
    background-color: white;
    border: 3px solid black;
}

.tools{
    display: flex;
    flex-wrap: wrap;
    width: 126px;
    
}

.colors{
    display: flex;
    width: 126px;
    flex-wrap: wrap;
    height: fit-content;
}

.tools-menu{
    display: flex;
    width: 126px;
    flex-wrap: wrap;
    height: fit-content;

}

