.optionContainer{
    height:70px;
}
.timer{
    font-size: 70px;
    color:rgb(92, 218, 172);
    display:none;
}
.options {
    background-color: rgb(34, 34, 35);
    height: 35px;
    border-radius: 10px;
    border: solid 2px rgb(67, 67, 67);
    width: 60%;
    margin: auto;
    display: flex;
    font-size: 23px;
}

.modes,
.quantities {
    display: flex;
    flex: 1;
}

.timeMode,
.wordMode,
.quantity {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    color: rgb(166, 166, 166);
    cursor: pointer;
    transition: flex 0.2s ease;
    border: solid 1px rgb(57, 57, 57);
}

.modes {
    border-right: solid 4px rgb(27, 30, 29);

}

.selected {
    flex: 2;
    color: rgb(104, 217, 172);
    background-color: rgb(29, 29, 29);
}

.options div:first-child div:first-child {
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
}

.options div:last-child div:last-child {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}

.restartBtn {
    width: 100px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    background-color: rgb(101, 206, 178);
    margin: auto;
    margin-top:10px;
    cursor: pointer;
}

.blurBG {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.377);
    backdrop-filter: blur(1.5px);
    display: none;
}

.quantityPicker {
    display: none;
    position: absolute;
    height: 180px;
    width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 15px;
    background-color: rgb(58, 57, 57);
    z-index: 500;
    flex-direction: column;
    padding: 20px;
    gap: 10px;
}

.quantityPicker .title {
    font-size: 35px;
    font-family: 'Varela Round';
    width: 100%;
    display: flex;
    color: rgb(191, 191, 191);
}

.quantityPicker .inputQuantity {
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    background-color: rgb(36, 35, 35);
    border: none;
    border-radius: 10px;
    color: white;
    padding-left: 5px;
}

.quantityPicker .context {
    color: rgb(202, 201, 201);
}

.quantityPicker .enterQuantity {
    box-sizing: border-box;
    height: 35px;
    width: 100%;
    background-color: rgb(37, 189, 154);
    border: none;
    border-radius: 10px;
    font-size: 15px;
    color: white;
    cursor: pointer;
}