@import url('https://fonts.googleapis.com/css2?family=Darumadrop+One&display=swap');

		* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-snap-type: y mandatory;
	overflow-y: scroll;
}

body {
	font-family: 'Darumadrop One', serif;
	font-weight: 400;
	font-style: normal;
}


.scroll-down-dude {
	position: absolute;
	right: 50%;
	transform: translateX(-50%);
	bottom: 25px;
	z-index: 9999;
	animation-delay: 2.6s;
	cursor: pointer;
}

.scroll-down-dude:before,
.scroll-down-dude:after {
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	transform: rotate(45deg);
	box-shadow: rgba(0, 0, 0, 0.15) 1.95px 1.95px 2.6px;
	border-bottom: 4px solid #EBEF9A;
	border-right: 4px solid #EBEF9A;
}

.scroll-down-dude:before {
	animation: down-arrow-before 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}

.scroll-down-dude:after {
	animation: down-arrow-after 2.6s cubic-bezier(0.77, 0, 0.175, 1) infinite;
}


@media only screen and (max-width: 600px) {
  .scroll-down-dude {
	  display: none;
  }
}


section {
	height: 100vh;
	width: 100vw;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	scroll-snap-align: start;
	overflow: hidden;
}

.dark {
	background: #50A581;
	color: #EBEF9A;
}

.light {
	background: #EBEF9A;
	color: #50A581;
}

img {
	position: absolute;
	bottom: 0;
	z-index: 9999;
}

img.right {
	right: 0;
}

img.left {
	left: 0;
}

.bgText {
	text-align: center;
	position: absolute;
	top: 6.7vh;
	width: 85vw;
	height: 93.3vh;
}

section[data-section="1"] .bgText {
	font-size: 12vmax;
	animation-delay: 250ms;
}

section[data-section="1"] img {
	height: 80vh;
	animation-delay: 1500ms;
}

section[data-section="2"] .bgText {
	font-size: 11vmax;
	animation-delay: 250ms;
}

section[data-section="2"] img {
	height: 80vh;
	animation-delay: 1500ms;
}

section[data-section="3"] .bgText {
	font-size: 10vmax;
	animation-delay: 250ms;
}

section[data-section="3"] img {
	height: 80vh;
	animation-delay: 1500ms;
}

section[data-section="4"] .bgText {
	font-size: 10vmax;
	animation-delay: 250ms;
}

section[data-section="4"] img {
	height: 80vh;
	animation-delay: 1500ms;
}

section[data-section="5"] .bgText {
	font-size: 10vmax;
	animation-delay: 250ms;
}

section[data-section="5"] img {
	height: 80vh;
	animation-delay: 1500ms;
}

section[data-section="6"] .bgText {
	font-size: 10vmax;
	animation-delay: 250ms;
}

section[data-section="6"] img {
	height: 80vh;
	animation-delay: 1500ms;
}

section[data-section="7"] .bgText {
	font-size: 6.5vmax;
	animation-delay: 250ms;
}

section[data-section="7"] img {
	height: 80vh;
	animation-delay: 3500ms;
}

section[data-section="8"] .bgText {
	font-size: 10vmax;
	animation-delay: 250ms;
}

section[data-section="8"] img {
	height: 80vh;
	animation-delay: 2500ms;
}

section[data-section="9"] .bgText {
	font-size: 6vmax;
	animation-delay: 250ms;
}

section[data-section="9"] img {
	height: 80vh;
	animation-delay: 3500ms;
}

section[data-section="10"] .bgText {
	font-size: 10vmax;
	animation-delay: 250ms;
}

section[data-section="10"] img {
	height: 80vh;
	animation-delay: 2500ms;
}

.bgText p:nth-of-type(1) {
	animation-delay: 250ms;
}

