#progressionContainer{/*Styling for container of the range input*/
    max-width: 400px;
    margin-bottom: 10px;
    padding-left: 0;
    justify-content: center;
}
#progression{/*Styling for range slider track*/
    appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #8B0000;
    border: 1px solid black;
}

#progression::-webkit-slider-thumb{/*Changing the styling of the range thumb*/
    appearance: none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;

    background-image: url(./images/darksign.webp);
    background-size: cover;
    background-position: center bottom;
    margin-bottom: 3px;
    
    
}

#progression::-moz-range-thumb{/*Changing the styling of the range thumb for Firefox*/
    appearance: none;
    background: none;
    border:none;
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;

    background-image: url(./images/darksign.webp);
    background-size: cover;
    background-position: center bottom;
    margin-bottom: 3px;
    
}

body{/*Setting the font and fontsize for the main protion of the site*/
    font-family: Perpetua;
    font-size: large;
}

.checkControl{
    min-width: 250px;
    max-width: 250px;
}

#checkboxContainer{
    max-width: 210px;
    padding-left: 10px;
    margin-left: 25px;
    background-color: #38322b;
    border: 1px solid black;
    border-radius: 5px;
}

#submit{
    width: 210px;
    height: 50px;
    color: aliceblue;
    background-color: #811E05;
    border-radius: 10px;
}

#userInput{
    max-width: 500px;
    border-radius: 10px;
    border: 2px solid #811E05;
    background-color: #181512;
}

#imgContainer{
    border: 1px solid black;
    background: linear-gradient(to right,
        #180f0f 0%,
        #442222 66%,
        #180f0f 100%
    );
}

#output{
    display: flex;
    background-color: #181512;
    border-radius: 10px;
    border: 2px solid #811E05;
}



#weaponDisplay{
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#obtain{
    font-size: x-small;
    max-width: 200px;
    text-align: center;
}

#runInfo{
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 2px solid #811E05;
}