:root{
    background-color: black;
    --brightness: 1;
    --blur: 100;
    --scale: 1;
    --translateX: 0;
    --translateY: 0;
    font-family: Arial, Helvetica, sans-serif;
}

p{
    padding-left: 40px;
    padding-right: 60px;
    text-align: justify;
    text-justify: inter-character;
}
small{
    filter: blur(1.5px);
    padding-left: 40px;
    padding-right: 60px;
    text-align: justify;
    text-justify: inter-character;
}
.bgImage {
    position: fixed;
    top:0;
    left: 0;
    z-index: 0;
    height: 100vh;
    width: 100vw;
    /*background-image: url('bg.png');*/
    background-repeat: no-repeat;
    background-size: cover;
    filter: brightness(var(--brightness)) blur(var(--blur));
    transform: matrix(var(--scale),0,0,var(--scale),var(--translateX),var(--translateY));
}
.menu{
    width: 800px;
    padding-top: 8px;
    padding-right: 8px;
    padding-bottom: 8px;
    padding-left: 8px;
    border-radius: 8px;
    backdrop-filter: blur(20px);
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
.settings{
    padding-top: 32px;
    padding-left: 80px;
}

.reset{
    float: right;
}

.file{
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 1px 12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.showMenu{

    display: none;
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

label{
    font-size: xx-large;
    margin-left: 30px;
    display: block;
    float: right;
    padding-top: 20px; /*This needs to be modified to fit */
}

input[type="button"]{
    height: 80px;
    font-size: xx-large;
}
input[type="file"]{
    height: 44px;
    font-size: xx-large;

}


input[type="range"] { 
    --width: 600px;
    margin: auto;
    -webkit-appearance: none;
    position: relative;
    overflow: hidden;
    height: 80px;
    width: var(--width);
    cursor: pointer;
    border-radius: 0; /* iOS */
}

/*
 * 1. Set to 0 width and remove border for a slider without a thumb
 */
::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 60px; /* 1 */
    height: 80px;
    background: #fff;
    box-shadow: -100vw 0 0 100vw dodgerblue;
    border: 2px solid #999; /* 1 */
}

