.settings-header {
	font-size: 5rem;
	margin-bottom: 1rem;
    transition: text-shadow .3s ease-in-out, color .3s ease-in-out;
}

.settings {
    display: flex;
    align-items: center;
    flex-direction: column;
}

.switch {
    margin: 0.5rem;
    display: flex;
    flex-direction: row;
    align-items: center;
}

.switch-content {
    position: relative;
    display: inline-block;
    width: 3.75rem;
    height: 2rem;
    border-radius: 100%;
    background: var(--secondary-background);
    margin-left: 0.75rem;
}

.switch-content input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: color-mix(in srgb, var(--secondary-background) 90%, black 10%);
    transition: .1s;
    border-radius: 5rem;
    box-shadow: inset 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
}

.slider:before {
    position: absolute;
    content: "";
    height: 1.5rem;
    width: 1.75rem;
    left: 0.25rem;
    bottom: 0.25rem;
    background: var(--background);
    transition: .1s;
    border-radius: 5rem;
}

input:checked + .slider {
    background: var(--accent-color);
    box-shadow: inset 0 0 calc(var(--highlights) * 0.25rem) rgba(255, 255, 255, 0.5);
}

input:checked + .slider:before {
    transform: translateX(1.5rem);
    background: white;
}