@import url('http://fonts.googleapis.com/css?family=Tahoma');
body {
    margin: 0px;
    box-sizing: border-box;
    padding: 20px;
    font-family: 'Tahoma';
    overflow: hidden;
    background: #313131;
}

canvas {
    box-shadow: -3px 2px 9px 6px black;
    cursor: pointer;
    align-self: center;
}

.canv {
    display: flex;
    justify-content: center;
    flex-direction: row;
}

.tools {
    display: flex;
    justify-content: center;
    flex-direction: row;
    margin-top: 10px;
}

.tools .color-field {
    height: 40px;
    width: 40px;
    min-height: 40px;
    min-width: 40px;
    cursor: pointer;
    display: inline-block;
    border-radius: 50%;
    border: 2px solid white;
    align-self: center;
    margin: 0 10px;
}

.tools .button {
    align-self: center;
    width: 100px;
    height: 40px;
    border: 2px solid white;
    cursor: pointer;
    color: white;
    background: #222;
    font-weight: bold;
    margin: 0 10px;
}

.color-picker {
    align-self: center;
    height: 50px;
    margin: 0 10px;
}

.pen-range {
    align-self: center;
    margin: 0 10px;
}