body {
    margin: 0;
    padding: 0;
    background-color: #626262;
    font-family:sans-serif;
}

#canvas_container {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 20px;

    border: 5px solid #aaa;
    cursor: none;
    z-index: 50;

}

#colours {
    display: flex;
}

.colour, .mode {
    width: 30px;
    height: 30px;
    border: 5px solid white;
    border-radius: 40px;
    cursor: pointer;
    margin-left: 10px;
}

.mode {
    width: 75px;
    text-align: center;
    line-height: 30px;;
}

#tools {
    display: flex;
    justify-content: space-between;
    position: fixed;
    align-items: center;
    padding: 10px;
    background: #aaaaaaaa;
    width: 700px;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    border-radius: 100px;

}
#modes {
    display: flex;
}


.colour.selected, .mode.selected {
    border-color: rgb(34, 34, 34) !important;
}

.mode.selected {
    background-color:  rgb(34, 34, 34);
    color: white;
}

#canvas_input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}