#toggle-mode{
    /* width: 100%; */
    /* height: 100%; */
    position: absolute;
    top: 200px;
    left: 600px;
    /* display: flex;
    justify-content: center;
    align-items: center; */
}
 h1{
    color: rgb(10, 8, 8);
    font-size: 2rem;
    font-family: 'Courier New', Courier, monospace;
    text-align: center;
    position: absolute;
    top: 100px;
    left: 570px;
}
#checkbox{
    visibility: hidden;
}
#checkbox-label{
    width: 8rem;
    height: 3.6rem;
    position: relative;
    display: inline-block;
    background-color: rgb(153, 149, 149);
    border-radius: 100px;
    /* box-shadow: inset 0 0 15; */
}

#toggle{
    display: inline-block;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    background-color: rgb(8, 8, 8);
    position: absolute;
    left: 5px;
    top: 4px;
    transition: all .2s linear;

}

#checkbox:checked + #checkbox-label #toggle{
    background-color: rgb(231, 226, 226);
    transform: translateX(4.4rem);
}