h1 {
    margin-top: 15px;
    margin-bottom: 15px;
}

h2 {
    margin-top: 10px;
    margin-bottom: 10px;
}

#title {
    color: white;
}

#canvas {
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    width: 100%;
    height: 100%;
    z-index: -50;
    top: 0px;
    left: 0px;
    position: absolute;
    background: black;
}

#menu:hover {
    right: 0px;
    padding: 0px 0px 0px 10px;
    transition: all 0.3s ease-in-out;
}

#menu {
    color: white;
    background: red;
    position: absolute;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 100px;
    height: 100%;
    overflow: hidden;
    top: 0;
    width: 300px;
    right: -380px;
    z-index: 10;
    transition: all 0.2s ease-in-out;
    line-height: 17px;
}

#overlay {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: absolute;
    margin: 0px 0px 0px 0px;
    padding: 0px 0px 0px 0px;
    overflow: hidden;
}

.slidecontainer {
    width: 100%;
    /* Width of the outside container */
    margin: 2px 0px 5px 0px;
}

.slider-textbox {
    -webkit-appearance: none;
    width: 10%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider {
    -webkit-appearance: none;
    width: 80%;
    position: relative;
    top: 1px;
    height: 10px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #4CAF50;
    cursor: pointer;
}

.click-menu {
    width: 90%;
    height: 30px;
    border-radius: 15px;
    margin-bottom: 10px;
    padding: 5px 10px 5px 10px;
    overflow: hidden;
    background: rgba(57, 57, 57, 0.468);
    transition: all 0.5s ease-in-out;
}

.click-menu:hover {
    height: 220px;
    transition: all 0.5s ease-in-out;
}

/* Hide the browser's default checkbox */

.container {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-left: 15px;
    margin-right: 30px;
    margin-top: 5px;
    margin-bottom: 5px;
    cursor: pointer;
    font-size: 19px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: all 0.5s linear;
}

.container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    transition: all 0.5s linear;
}

/* Create a custom checkbox */

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    transition: all 0.5s linear;
}

/* On mouse-over, add a grey background color */

.container:hover input~.checkmark {
    background-color: #ccc;
    transition: all 0.5s linear;
}

/* When the checkbox is checked, add a blue background */

.container input:checked~.checkmark {
    background-color: rgb(123, 186, 180);
    transition: all 0.5s linear;
}

/* Create the checkmark/indicator (hidden when not checked) */

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
    transition: all 0.5s linear;
}

/* Show the checkmark when checked */

.container input:checked~.checkmark:after {
    display: block;
    transition: all 0.5s linear;
}

/* Style the checkmark/indicator */

.container .checkmark:after {
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all 0.5s linear;
}

/* Create a custom radio button */

.radiomark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #eee;
    border-radius: 50%;
}

/* On mouse-over, add a grey background color */

.container:hover input~.radiomark {
    background-color: #ccc;
}

/* When the radio button is checked, add a blue background */

.container input:checked~.radiomark {
    background-color: rgb(123, 186, 180);
}

/* Create the indicator (the dot/circle - hidden when not checked) */

.radiomark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the indicator (dot/circle) when checked */

.container input:checked~.radiomark:after {
    display: block;
}

/* Style the indicator (dot/circle) */

.container .radiomark:after {
    left: 6px;
    top: 6px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}