.theme__toggle {
    height: 6rem;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 50%;
    /* border: 1px solid cyan; */

    input[type='checkbox'] {
        scale: 0;
    }

    label {
        height: 100%;
        width: 100%;
        position: absolute;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    label>* {
        height: 4rem;
        width: 4rem;
        border-radius: 50%;
        /* border: 1px solid greenyellow; */
    }

    label {
        color: var(--s0);
        background-color: var(--s8);
    }

    #mode:checked~.dark {
        scale: 0;
        opacity: 0;
    }

    #mode:not(:checked)~.light {
        scale: 0;
        opacity: 0;
    }
}