html,
body {
	position: fixed;
	width: 100%;
	height: 100dvh;
	overflow: hidden;
}

body {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;	
	color: #1a1a1a;
}

a:hover {
	text-decoration: underline;
}

a,
a:visited {
	color: inherit;
}

section {
	display: flex;
	position: sticky;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 100vw;
	min-height: 100%;
	height: var(--app-height);
	scroll-snap-align: center;
	scroll-snap-stop: always;
	scroll-margin: 0;
	background: inherit;
	transition: background-color 1s linear;
}

.image {
	height: 500px;
}

.content-text {
	font-size: clamp(0.875rem, 2.5vw, 1.25rem);
}

.bgDisplay {
	height: var(--app-height);
}

.scrollsnap-container {
	position: static;
	display: flex;
	box-sizing: border-box;
	flex-direction: column;
	width: 100vw;
	height: var(--app-height);
	min-height: -webkit-fill-available;
	margin: 0;
	padding: 0;
	overflow-x: hidden;
	overflow-y: scroll;
	scroll-snap-stop: always;
	scroll-snap-type: proximity; /* for older browsers */
	scroll-snap-points-y: repeat(100vh); /* for older browsers */	
	scroll-snap-type: y mandatory;
	scrollbar-width: none;
	background: transparent;
}
