html, body {
    margin: 0;
    background-color: gray;
    font-family: Raleway, sans-serif;
}
.headspace {
    min-height: 5vh;
    max-height: 600px;
    color: white;
    justify-content: center;
    text-align: center;
}
h1 {
    font-family: "Indie Flower", sans-serif;
    font-size: 60px;
    margin: 0;
    padding: 0;
    letter-spacing: 30px;
}
canvas {
    height: 100%;
    width: 100%;
    border: 1px solid black;
    background-color: white;
}
span {
    position:relative;
    top:-15px;
}
.widthSlider {
    width: 400px;
    height: 40px;
}
.tools button {
    height: 40px;
    width: 40px;
    border: none;
    margin: 10px;
}
    .tools button:hover {
        border: 1px solid white;
    }
button.selected {
    border: 2px solid black;
}
.colorPickerContainer {
    display: inline-block;
    font-size: .7em;
}
.colorPicker {
    height: 40px;
    width: 40px;
    border: none;
    background-color: gray;
    padding: 0 0 20px 0;
}


#red {background-color: red;}
#orange {background-color: orange;}
#yellow {background-color: yellow;}
#green {background-color: green;}
#blue {background-color: blue;}
#violet {background-color: violet;}
#black {background-color: black;}
#white {background-color: white;}
#brown {background-color: brown;}
#custom {background-color: yellowgreen;}