button {
    background-color: rgb(68, 68, 68);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    margin: 0.2rem 0.1rem;
    transition-duration: 1.25s;
    cursor: pointer;
    border-radius: 0.2rem;
}

button:hover {
    background-color: red;
    color: white;
}

.buttoncent {
    background-color: rgb(68, 68, 68);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 1rem;
    transition-duration: 1.25s;
    cursor: pointer;
    border-radius: 4px;
    left: 50%;
    transform: translateX(-50%);
}

.buttoncent:hover {
    background-color: red;
    color: white;
}

.pcent {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

::-moz-progress-bar {
    background: rgb(82, 235, 52);
}

progress::-webkit-progress-value {
    background: rgb(82, 235, 52);
}

progress {
    background: rgb(82, 235, 52);
    border-radius: 15px;
}

.sidebar {
    margin: 0px;
}

p {
    color: white;
    font-size: 1rem;
    margin: 5px;
}

body {
    background-color: black;
}

label {
    color: white;
}

.spacedBottom {
    margin-bottom: 15px;
}

input[type="number"] {
    width: 25%;
}

select {
    margin-top: 10px;
    margin-bottom: 10px;
}

input:disabled,
select:disabled {
    background-color: #f9f9f9;
    color: #555;
    opacity: 1;
    border: 1px solid #ccc;
    cursor: not-allowed;
}