* {
    margin: 0;
    padding: 0;
    color: white;
}

html {
    background-color: black;
}

.background {
	position: fixed;
	height: 100%;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: -999;
    animation: colorShift 10s linear infinite;
}
@keyframes colorShift {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}
.topground {
    position: fixed;
    background-color: hsla(0, 0%, 0%, 0.8);
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    border-radius: 10px;
    z-index: -998;
    backdrop-filter: blur(10px);
}

body {
    padding: 5%;
}


input {
    background-color: black;
    color: white;
    border: 1px solid white;
}

input:disabled {
    background-color: black;
    color: gray;
    border: 1px solid gray;
}

button {
    background-color: black;
    color: white;
    border: 1px solid white;
    padding: 2px 6px;
    border-radius: 3px;
}
button:hover {
    background-color: hsla(0, 0%, 100%, 0.2);
    color: white;
}
button:active {
    background-color: white;
    color: black;
    transform: scale(0.95);
}

.times {
    display: flex;
    align-items: flex-end;
    gap: 5px;
    margin: 20px 0;
    border: 1px solid hsla(0, 0%, 100%, 0.2);
    padding: 10px 0;
    border-radius: 5px;
}
.times * {
    padding-left: 20px;
}

#final-results {
    display: flex;
    align-items: flex-end;
    gap: 20px;
}
#final-results div {
    border: 1px solid white;
    padding: 10px 15px;
    border-radius: 5px;
}


#title {
    color: rgb(255, 231, 123);
    text-align: center;
    animation: colorShift 10s linear infinite;
    width: 800px;
    margin-left: 50%;
    transform: translateX(-50%);
}

.remove-part-btn {
    margin-left: 20px;
    padding: 2px 6px;
    border-radius: 50%;
}