*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: linear-gradient(120deg, #fbc2eb, #a6c1ee);
}
.conteiner{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    
}
.field{
    margin-bottom: 40px;
    padding: 5px 10px;
    font-size: 16px;
    margin-right: 20px;
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    border-radius: 15px;
    
}

.conteiner__control{
    display: flex;      
    width: 500px; 
    justify-content: center;
}
.range__div {
    display: flex;
    flex-direction: column; 
    align-items: center;    
    gap: 5px;   
    margin-right: 20px;           
}
.size{
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    outline: none;
    cursor: pointer;
}
.color__choice-input{
    width: 30px;
    height: 30px;
    margin-right: 20px;
}

.playground{
    display: flex;
    flex-wrap: wrap;
    border: 2px solid black;
    width: 500px;
    height: 500px;
    background-color: white;
}
.child{
    border: 1px solid black;
    box-sizing: border-box;
}
.size__playgr{
    font-size: 18px;
}
.delete{
    padding: 5px 10px;
    font-size: 16px;
    margin-top: 20px;
    background: linear-gradient(135deg, #a18cd1, #fbc2eb);
    border-radius: 15px;
}