html {
    background-color: rgb(25, 25, 25);
    font-family: "main";
    color: rgb(240, 240, 240);
    overflow-x: hidden;
}

body {
    margin: auto;
    padding-top: 25px;
    width: 730px;
}

h1 {
    text-align: center;
    font-size: 48px;
    text-wrap: nowrap;
}

p {
    z-index: 1;
}

select, button {
    height: 45px;
}

input:focus {
    outline: none;
}

input::-webkit-outer-spin-button, input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

select {
    border-radius: 5px;
    border: 2px solid rgb(240, 240, 240);
    background-color: rgb(25, 25, 25);
    font-family: "main";
    color: rgb(240, 240, 240);
    padding: 5px;
    font-size: 20px;
    text-align: center;
    transition: all 0.15s;
}

select:focus {
    outline: none;
}

select option {
    text-align: left;
    outline: none;
}

button {
    border-radius: 5px;
    border: 2px solid rgb(240, 240, 240);
    background-color: rgb(25, 25, 25);
    font-family: "main";
    color: rgb(240, 240, 240);
    padding: 5px;
    font-size: 24px;
    text-align: center;
    width: 75px;
    transition: all 0.15s;
}

select:hover {
    transform: scale(1.02);
}

button:hover {
    transform: scale(1.03);
}

/* CLASSES */

.inputs {
    display: flex;
    margin: auto;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 10px;
}

.input-field, .select-field {
    display: flex;
    flex-direction: column;
}

.input-field p, .select-field p {
    width: max-content;
    margin: auto;
    padding-left: 2px;
    padding-right: 2px;
    text-align: center;
    transform: translateY(40%);
    background-color: rgb(25, 25, 25);
}

.input-field > input {
    border-radius: 5px;
    border: 2px solid rgb(240, 240, 240);
    background-color: rgb(25, 25, 25);
    font-family: "main";
    color: rgb(240, 240, 240);
    font-size: 24px;
    text-align: center;
    width: 125px;
    transition: all 0.15s;
    height: 39px;
}

.input-field > input:hover {
    transform: scale(1.02);
}

.sort-container {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    width: 700px;
    height: 400px;
    margin: auto;
    padding: 15px;
    background-color: rgb(20, 20, 20);
    border-radius: 15px;
}

.box {
    flex: 1;
    background-color: rgb(240, 240, 240);
    border-radius: 5px;
    transition: all 0.2s;
}

.volume-container {
    display: flex;
    
}

.bg-container {
    overflow: hidden;
    margin: 0%;
    padding: 0%;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
}
  
.bg {
    position: absolute;
    background: url("images/bg.png") repeat;
    width: 200vw;
    height: 200vh;
    background-size: 1000px;
    filter: invert() brightness(0.12);
    pointer-events: none;
    transform: translate(-50%, -50%);
}

/* IDS */

#target {
    background-color: rgb(135, 205, 255);
}

#remove {
    opacity: 0;
}

#volume-min, #volume-max {
    width: 35px;
    height: 35px;
}

#volume {
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    overflow: hidden;
    background: none;
}

#volume::-webkit-slider-runnable-track {
    height: 10px;
    border-radius: 5px;
    background-color: rgb(240, 240, 240); 
}

#volume::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background-color: rgb(255, 255, 255);
    border: 3px solid rgb(15, 15, 15);
    width: 20px;
    height: 20px;
    border-radius: 10px;
    margin-top: -5px;
    transition: all 0.1s;
}

#volume::-webkit-slider-thumb:hover {
    transform: scale(1.06);
}

/* FONTS */

@font-face {
    font-family: "main";
    src: url("fonts/main.otf");
}