@import url('https://fonts.googleapis.com/css2?family=Kanit:wght@200;300&family=Poppins:wght@100;200&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: 20px;
    font-family: 'Poppins', 'Cuprum', sans-serif;
}

#canvas1 {
    position: absolute;
    top: 0;
    left: 0;
}

#randomizeButton {
    cursor: pointer;
    color: whitesmoke;
    background-color: green;
    font-family: 'Kanit',
        sans-serif;
    margin-bottom: 7px;
    width: 100%;

}

#randomizeButton:hover {
    border: 2px solid black inset;
    filter: invert();
}

#info {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30%;
    text-align: left;
    padding: 30px;
    font-size: 20px;
    font-family: 'Poppins',
        sans-serif;
}

#info a {
    font-size: 22px;
    color: rgb(12, 125, 12);
}

#info a:hover {
    color: rgb(3, 165, 180);
    font-weight: 500;
    transform: scale(1.3) .5s ease-in-out;
}

button {
    cursor: pointer;
    padding: 10px 40px;
    text-shadow: 1px 1px rgba(255, 255, 255, 0.5);
    width: 220px;
    font-family: 'Kanit',
        sans-serif;
}

button:hover {
    border: 2px solid black inset;
    color: rgb(0, 118, 33);
}

#reset {
    width: 100%;
}

#resetButton:hover {
    border: 2px solid black;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
    font-weight: 500;
    transform: scale(1.3) .5s ease-in-out;
}

#fractal_tree {
    position: absolute;
    cursor: pointer;
    width: 200px;
    height: auto;
    bottom: 2%;
    left: 2%;
    transition: scale;
}

#fractal_tree:hover {
    transform: scale(1.5) .5s ease-in-out;
    filter: invert();
}

#controls {
    position: absolute;
    padding: 10px;
    left: 20px;
    top: 66px;
    width: 250px;
    border: 2px solid black;
    box-shadow: 2px 2px 3px black;
    background: rgba(0, 0, 0, 0.2);
}

#controlsHeader {
    margin-top: 30px;
    font-family: 'Lilita One', cursive;
}

label,
input {
    font-size: 15px;
}

/* Start of: Custom Input Range Sliders */
input[type="range"] {
    cursor: pointer;
    background-color: transparent;
    border: 1px solid black;
    width: 100%;
}

input[type="range"]:focus {
    cursor: pointer;
    outline: none;
    border: none;
}

input[type="range"]::-webkit-slider-runnable-track {
    background: rgb(3, 164, 32);
    height: 5px;
}

input[type="range"]::-moz-range-track {
    background: rgb(3, 164, 32);
    height: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    height: 15px;
    width: 15px;
    background: rgb(18, 111, 30);
    margin-top: -5px;
    border-radius: 50%;
    border: 4px solid rgb(20, 132, 0);
    box-shadow: 2px 2px 2px rgb(59, 59, 59);

}

input[type="range"]::-webkit-slider-thumb:hover {
    transition: scale .5s ease-in-out;
    transform: scale(1.5);
    background-color: rgb(3, 94, 9);
}

input[type="range"]::-moz-range-thumb {
    height: 15px;
    width: 15px;
    background: rgb(5, 137, 91);
    margin-top: -5px;
    border-radius: 50%;
    border: 4px solid rgb(20, 132, 0);
    box-shadow: 2px 2px 2px rgb(59, 59, 59);
}

input[type="range"]::-moz-range-thumb:hover {
    transition: scale .5s ease-in-out;
    transform: scale(1.5);
    background-color: rgb(3, 94, 9);
}




/* End of: Custom Input Range Sliders */