footer {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	width: 100%;
	font-size: 0.6875rem;
	color: var(--footer-text-color);
	background: var(--footer-background-color);
	box-sizing: border-box;
	
	.footer-content {
		display: flex;
		align-items: center;
		justify-content: space-between;
		gap: 0.5rem;
		width: 75rem;
		padding: 0.5rem 1rem; 
		max-width: 100%;
		box-sizing: border-box;
		
		.disclaimer {
			display: flex;
			flex-direction: column;
			gap: 0.25rem;
		}
		
		@media (width >= 1920px) {
			width: 90rem;
		}
		
		@media (width < 992px ) {
			flex-direction: column-reverse;
			
			.disclaimer {
				align-items: center;
				text-align: center;
			}
		}
	}
	
	a {
		color: inherit !important;
	}
	
	/* move task_image out of sight */
	img {
		position: absolute;
		bottom: 0;
		right: 0;
	}
}

.theme-select {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	font-size: 0.875rem;
	font-weight: 500;
	letter-spacing: 0.0625rem;
	text-transform: uppercase;
}

#debug {
	opacity: 0.35;
	font-size: 0.75rem;
}