:root{

}

body{
    margin: 0; padding: 0;
    overflow: hidden;
    box-sizing: border-box;
    background: #313131;
}

canvas{
    box-shadow: -3px 2px 9px 6px black;
    cursor: pointer;
}

.tools {
    display: flex;
    justify-content: center;
    margin-top: 15px;
}

.tools .color-field{
   height: 40px;
   width: 40px;
   min-height: 40px;
   min-width: 40px;
   cursor: pointer;
   display: inline-block;
   box-sizing: border-box;
   border-radius: 50%;
   border: 2px solid white;
   margin: 0 10px;
}

.tools .button {
    align-self: center;
    width: 100px;
    height: 40px;
    cursor: pointer;
    color: white;
    background: #222;
    font-weight: bold;
    border: 2px solid blanchedalmond;
    margin: 0 10px;
}

.color-picker {
    align-self: center;
    margin: 0 15px;
    height: 50px;
}