/* About
==================================== */
#about-pop_up{
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100%;
	min-height: var(--height-viewport);
	padding: var(--margin-sides);
	display: grid;
	grid-template-rows: min-content 1fr min-content;
	row-gap: 60px;
	background-color: var(--color-bg);
	overflow-x: hidden;
	overflow-y: scroll;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: none;
	scrollbar-width: none;
	z-index: 10;
}
#about-description{
	align-self: center;
	justify-self: center;
	text-align: center;
}
#about-trigger,
#about-close{
	width: fit-content;
	width: -moz-fit-content;
	-webkit-user-select: none;
		-moz-user-select: none;
		 -ms-user-select: none;
			  user-select: none;
	cursor: pointer;
}
@media (max-width: 500px){
	#about-description br{
		display: none;
	}
}
