* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Times New Roman', serif;
    font-weight: 400;
    font-size: 16px;
}

.box {
    background-color: rgb(7, 7, 7);
    width: 100vw;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    background-color: white;
    width: 400px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

h1 {
    color: rgb(64, 62, 75);
    font-size: 20px;
    margin-bottom: 20px;
}

.input-field {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgb(36, 35, 43);
    width: 100%;
    height: 50px;
    border-radius: 5px;
}

#outputbox {
    margin-left: 20px;
    color: rgb(78, 77, 85);
    background: transparent;
    border: none;
    padding: 5px;
    width: 100%;
}

#outputbox:focus {
    outline: none;
}

button {
    background-color: rgb(18, 18, 29);
    padding: 5px 10px;
    border-radius: 5px;
    outline: none;
    border: none;
    color: rgb(179, 172, 172);
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
}

.options {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.range-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

#para {
    color: black;
    padding-bottom: 10px;
}

input[type="range"] {
    width: 100%;
    cursor: pointer;
    -webkit-appearance: none;
    background-color: rgb(7, 7, 7);
    height: 5px;
    border-radius: 5px;
}

input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;
}

input[type="range"]::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background-color: black;
    border-radius: 50%;
    cursor: pointer;
}

.additional {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.param {
    display: flex;
    align-items: center;
    gap: 10px;
}

.param input {
    appearance: none;
    border: 2px solid black;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.param input:checked {
    background-color: black;
}

.param label {
    color: black;
    font-size: 14px;
    display: inline-block;
}
