body {
    background-color: rgb(105, 105, 105);
    margin: 0;
}

.rotatingBoard {
    display: flex;
    border: 1px solid white;
    margin: 0;
    align-items: center;
}

.rotatingBoard .toggleBackground {
    width: 50px;
    height: 20px;
    background-color: black;
    position: absolute;
    right: 30px;
    border-radius: 10px;
    transition: background-color .5s;
}

.rotatingBoard .toggleCircle {
    height: 25px;
    width: 25px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    transition: right .5s;
}

.rotatingBoard .toggleCircle.true {
    right: 30px;
}

.rotatingBoard .toggleCircle.false {
    right: 55px;
}

.rotatingBoard .text {
    font-size: 2rem;
    margin: 5px 5px 5px 30px;
}