body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    color: rgb(150, 150, 150)
}

#canvas{
    padding: 0;
    display: block;
    float: right;
}

#text-container {
    display: block;
    width: 30%;
    box-sizing: border-box;
    float: left;
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 20px;
}

#text-container #title {
    font-size: 5rem;
}

#text-container input, button, select {
    font-size: 1.2rem;
    background-color: white;
    padding: 5px 0;
    color: rgb(150, 150, 150);
    border: 1px solid;
    margin-top: 10px;
    width: 75%;
    opacity: 0.7;
}

#text-container button, #text-container select {
    cursor: pointer;
}

#text-container input[type="checkbox"] {
    width: auto;
    margin-top: 30px;
}

#text-container select {
    width: auto;
}

#text-container input[type="range"] {
    -webkit-appearance: none;
    appearance: none;
    width: 60%;
    height: 2px;
    padding: 3px 0 5px;
    background: rgb(150, 150, 150);
    border: none;
    outline: none; 
    -webkit-transition: .2s;
    transition: opacity .2s;
}

#text-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%; 
    background: rgb(150, 150, 150);
    cursor: pointer;
  }

#text-container input:hover, #text-container select:hover, #text-container button:hover {
    opacity: 1;
}