::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    width: 3px;
    background-color: black;
}

.darkmode {
    width: 60px;
    height: 30px;
    background-color: transparent;
    position: fixed;
    border: 2px solid #1c1c1c;
    right: 20px;
    top: 25px;
    border-radius: 50px;
    z-index: 1000;
}

.darkmode:hover {
    cursor: pointer;
}

.darkmode .circle {
    width: 20px;
    height: 20px;
    background-color: #1c1c1c;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 3px;
    transition: 0.25s;
}

.darkmode #toggle-mode {
    position: absolute;
    width: 30%;
    height: 30%;
    z-index: 1000000;
    display: none;
}

#toggle-mode:checked + .circle  {
    left: 32px;
}