.container{
    background-color: rgb(240, 225, 207);
}
input:checked + .slider {
    background-color: #bd7661;
}
input:checked + .slider:before {
    transform: translateX(13.5px);
}
i{
    color: rgb(139, 105, 91);
}
.header{
    text-align: center;
    font-size: 36px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
    color: #be7c68;
}
.Wrap{
    margin: 0 auto;
    width: 384px;
    height: 384px;
    background-color: rgb(59, 59, 59);
    border-radius: 15rem;
    border: 3px solid rgb(168, 133, 87);
}
.control{
    margin-top: 10px;
}
.switch {
    position: relative;
    display: inline-block;
    width: 35px;
    height: 20px;
}
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
.slider {
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}
.slider:before {
    position: absolute;
    content: "";
    left: 4.4px;
    bottom: 2.8px;
    height: 14px;
    width: 14px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}
.history{
    float: left;
    background-color: seashell;
    width: 150px;
    margin: 10px;
}
#work-or-rest{
    color: rgb(187, 182, 182);
    font-size: 1.3rem;
    font-family: 'Indie Flower', cursive;
    font-weight: bolder;
}
#minute-display{
    color: rgb(218, 208, 208);
    font-size: 4.6rem;
    padding: 0;
    font-weight: 500;
}
#second-display{
    font-size: 3.3rem;
    color:rgb(218, 208, 208);;
    padding: 0;
}
#play, #pause, #stop{
    height: 50px;
    width: 50px;
    margin: 5px;
    border-radius: 2rem;
    border: none;
    background-color: rgb(216, 193, 205);
}
#play:focus, #pause:focus, #stop:focus{
    outline: 0px;
}
#play:hover, #pause:hover, #stop:hover{
    background:  rgb(199, 155, 178);
}
#play:active, #pause:active, #stop:active{
    background:  rgb(167, 117, 142);
}
#work-minute-wrap, #rest-minute-wrap{
    width: 130px;
    margin: 10px;
    border: 1px solid bisque;
    border-radius: 1rem;
}
#work-minutes, #rest-minutes{
    color: rgb(187, 182, 182);
    font-family: 'Indie Flower', cursive;
    font-weight: bolder;
    margin-bottom:0;
}
#work-input, #rest-input{
    width: 100px;
    background-color: rgb(59, 59, 59);
    color: rgb(187, 182, 182);
    font-family: 'Neucha', cursive;
    font-size: 1.3rem;
    border: none;
    cursor: pointer;
}
#work-input:focus, #rest-input:focus{
    outline: 0px;
}
#timeUpBtn, #timeDownBtn{
    height: 40px;
    width: 40px;
    margin: 8px;
    border-radius: 2rem;
    background-color: rgb(216, 193, 205);
    
}
#timeUpBtn:focus, #timeDownBtn:focus{
    outline: none;
}

