body {
    /* background-color: black; */

    /* leave it to hide the scrollbars */
    /* overflow: hidden; */
}
html,
body {
    margin: 0;
    padding: 0;
}
canvas {
    display: block;
}
#legend {
    display: none;
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
#legend-button {
    display: block;
    position: fixed;
    right: 25px;
    bottom: 25px;
    background-color: white;
    padding: 5px 25px;
    border-radius: 15px;
    border: 2px solid black;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.25);
    font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
    font-size: 25px;
    font-weight: 800;
    cursor: pointer;
}
.hamburger-icon {
    color: #000;
    text-decoration: none;
    position: relative;
}

.hamburger-icon {
    padding-left: 1.2em;
}

.hamburger-icon:before {
    content: "";
    position: absolute;
    top: 27%;
    left: 0px;
    width: 0.75em; /* 12px/16px */
    height: 0.125em; /* 2px/16px */
    border-top: 0.375em double #000; /* 6px/16px */
    border-bottom: 0.125em solid #000; /* 2px / 16px */
}
#legend-button.hide {
    display: none;
}
#legend.open {
    display: block;
    position: fixed;
    right: 10px;
    bottom: 10px;
    margin-top: 50px;
    height: 60vh;
    background-color: white;
    border-radius: 15px;
    border: 2px solid black;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.25);
}
.legend-wrapper {
    height: 80%;
    padding: 10px 0;
    overflow-y: scroll;
    padding: 25px;
}
#legend-close {
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 20px;
    line-height: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    background-color: white;
    border: 2px solid black;
    border-radius: 90px;
    padding: 10px 13px;
    box-shadow: 2px 2px 2px 2px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.legend-hash-header {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}
#insert-prop-hash {
    font-size: 15px;
    font-family: "Courier New", Courier, monospace;
}
#legend-properties {
    width: 100%;
    margin: auto;
    /* width: 80% */
    padding: 5px;
    margin-top: 15px;
    border-collapse: collapse;
    font-size: 20px;
}
#legend-properties thead {
    font-weight: bold;
    border-bottom: 2px solid #222;
    text-transform: uppercase;
}
#legend-properties tbody tr {
    border-bottom: 1px dashed #999;
}
#legend-list {
    list-style-type: none;
    padding: 0;
    font-size: 20px;
}
#legend-list li {
    border-bottom: 1px solid #999;
}
.legend-key {
    font-family: "Courier New", Courier, monospace;
    font-size: 30px;
    font-weight: 800;
    vertical-align: middle;
    padding: 5px 10px;
    border: 1px solid #555;
    display: inline-block;
    margin: 5px;
    box-shadow: 1px 1px 1px 1px #555;
    border-radius: 5px;
    cursor: pointer;
}
.createdby {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    color: #555;
    background: white;
    text-align: center;
    padding: 20px;
    box-shadow: 0px -1px 15px -1px #aaa;
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
}
