body{
    height: 100vh;
    background-image: linear-gradient(to bottom right, darkblue, darkred);
    background-size: cover;
}

h1, h3{
    color: white;
    text-align: center;
}

#mainBox{
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    justify-content: space-evenly;
}

.FlexBox{
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#DataBox{
    background: black;
    border: solid 2px blueviolet;
    width : 100%;
    height : 100%;
    margin-left: 2vh;
    margin-right: 2vh;
    display:flex;
    justify-content: space-evenly;
    padding: 2px;
    color : white;

    background: rgba( 0, 0, 0, 0.50 );
    box-shadow: 0 8px 32px 0 rgba( 31, 38, 135, 0.37 );
    backdrop-filter: blur( 20.0px );
    -webkit-backdrop-filter: blur( 20.0px );
    border-radius: 10px;
}

.sizeSpeed{
    margin-left:2vh;
    margin-right: 2vh;
}

.sizeSpeed > div{
    display: flex;
    flex-wrap: nowrap;
    width: 100%;
    align-items: center;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 10px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
}

.slider:hover {
    opacity: 1;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 23px;
    height: 24px;
    border: 0;
    background: url('./assets/speed.png');
    background-size: cover;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 23px;
    height: 24px;
    border: 0;
    background: url('./assets/speed.png');
    cursor: pointer;
}

#myRange::-webkit-slider-thumb{
    background: yellow url('./assets/size.png');
    background-size: cover;
    border-radius: 50%;
}

.sortButtons{
    display: flex;
    justify-content:center;
    align-items: center;
}

.sortButtons > button{
    alignment: center;
}

.dataBar{
    display: flex;
    flex-direction:column;
}

.insideDataBox{
    background:royalblue;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    text-align: center;
    padding-top: 2vh;
}

button{
    height: 5vh;
    width: 17vw;
    padding: 0.2rem;
    font-weight:bold;
    border-radius:50%;
    margin-top: 2vh;
}

::-webkit-scrollbar {
    width: 1rem;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px grey;
}

::-webkit-scrollbar-thumb {
    background: darkblue;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: #b30000;
}

.controlButtons{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.controlButtons > div > button{
    background: darkred;
    border-radius: 2px;
    color: white;
}

.controlButtons > div > button:disabled{
    background: palevioletred;
}




