
.switch {
    position: relative;
    display: inline-block;
    width: 2rem;
    height: 1.1rem;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 30px;
}

.slider:before {
    position: absolute;
    content: "";
    height: .9rem;
    width: .9rem;
    border-radius: 100%;
    left: 0.1rem;
    bottom: .1rem;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: rgb(0,221,80);
}

input:focus + .slider {
    box-shadow: 0 0 1px rgb(0,221,80);
}

input:checked + .slider:before {
    transform: translateX(.9rem);
}
/*input-checkbox*/


.editor h2  {
    color: #eb3b5a;
    font-size: 1.5rem;

}
.editor p  {
    color: var(--color-light);
    line-height: 2;
}
