* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: darkgrey;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

#verticalButtons {
    display: flex;
    flex-direction: column;
}

button {
    border: none;
    border-radius: 5px;
    padding: 5px;
    margin: 2px;
    cursor: pointer;
}

button:hover {
    background: #5252fc;
}

#networkCanvas {
    background: black;
}

#carCanvas {
    background: lightgrey;
}