#map {
    height: 100%;
    width: 100%;
    position: absolute;
    background-color: whitesmoke;
    z-index: 10;
}

.map-wrapper {
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -1;
}

body {
    background-color: darkslategrey;
    margin: 0;
}

.menu-wrapper {
    position: absolute;
    right: 0;
    display: flex;
    flex-direction: column;
    z-index: 100;
    width: 10em
}

.menu-wrapper button {
    font-size: 270%;
}

.circuit-menu {
    display: flex;
    height: 10vh;
    justify-content: space-between;
    align-items: flex-end;
    position: absolute;
    width: 100%;
    bottom: 0;
    z-index: 100;
}

.circuit-button {
    cursor: pointer;
    width: 20%;
    height: 70%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
}

.active {
    height: 100%;
}

.white {
    background-color: white;
}

.blue {
    background-color: blue;
}

.black {
    background-color: black;
}

.pink {
    background-color: hotpink;
}

.red {
    background-color: red;
}

.purple {
    background-color: purple;
}

button {
    height: 5vh;
    width: 100%;
}