:root {
	--mint_green: #009B77;
	--blue: #256497;
	--gray: #414042;
	--black: #1f1f1f;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing:    border-box;
	-webkit-box-sizing: border-box;
}

html {
	background-color: var(--black);
	scroll-behavior: smooth;
	height: 100dvh;
	overscroll-behavior: auto !important;
}

.gray {
	background-color: var(--gray);
}

.green {
	background-color: var(--mint_green);
}

.green {
	background-color: var(--mint_green);
}

body {
	-webkit-user-select: none;
	-ms-user-select: none;
	user-select: none;
	position: fixed;
	width: 100%;
}

img {
	padding: 0px;
	margin: 0px;
}

div {
	padding: 0px;
	margin: 0px;
}

.full-screen-image {
		width: 100%;
		height: 100dvh;
		display: block;
		margin-left: auto;
		margin-right: auto;
		pointer-events: none;
}

.vignette {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 200px rgba(0,0,0,0.2) inset;
}

.repeater {
	background-size:20%
}

.full-screen-container {
	position: relative;
	width: 100%;
	height: 100dvh;
	overflow: auto;
	scroll-snap-type: y mandatory;
	-webkit-overflow-scrolling: touch;
}

.section {
	width: 100%;
	height: 100%;
	background-size:  cover;
	scroll-snap-align: center;
}

/* width */
::-webkit-scrollbar {
	width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
	background: #1f1f1f;
}

/* Handle */
::-webkit-scrollbar-thumb {
	background: #5f5f5f;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
	background: #555;
}