body {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.calculator {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 300px;
    text-align: center;
}

.inputs, .sliders, .buttons {
    margin-bottom: 10px;
}

input[type="number"], input[type="range"] {
    width: 100%;
    margin-bottom: 10px;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    width: 22%;
    height: 50px;
    font-size: 18px;
    border: solid 1px #ccc;
    border-radius: 5px;
    background-color: #f0f0f0;
    cursor: pointer;
    transition: background-color 0.3s;
    padding: 10px;

}

button:hover {
    background-color: #e0e0e0;
}

.result {
    font-size: 20px;
    margin-top: 10px;
}

#other > * {
    display: inline-block;
    margin-bottom: 10px;
    background-color: aqua;
    border-radius: 10px;
    padding: 5px;
    font-size: 8px;
}

.hide {
    display: none;
}
#fixing {
    position: relative;
    bottom: -5px;
}
