/* Copyright Jacob C. Stucki III */

* { /* Applied to all elements */
	font-family: Helvetica, sans-serif;
}

.fade-in-page {
	opacity: 0;
	animation-name: fade-in-page;
	animation-duration: 0s;
	animation-iteration-count: 1;
	/* animation-direction: normal; */
	animation-fill-mode: forwards; /* Keeps ending animation value */
	animation-delay: 0s;
}

@keyframes fade-in-page {
	from {opacity: 0;}
	to {opacity: 1;}
}

.displayblock {
	display: block;
}

.widget-border {
	z-index: 1;
	pointer-events: none; /* Click through element */
	position: absolute;
	width: inherit;
	height: inherit;
	border: solid 2px rgb(150, 150, 150);
	border-radius: inherit;
	box-sizing: border-box; /* sizes width/height properly https://developer.mozilla.org/en-US/docs/Web/CSS/box-sizing */
}

.body {
	display: flex;
	justify-content: center;
	/* border: solid 2px; */
}


/* Home-screen column counts are defined as a CSS grid in widgets/homescreen/homescreen.css */

.flex-justify-center {
	justify-content: center;
	display: flex;
}




