.parallax {
	position: relative;
}


#right, #left {
	width: 50%;
	box-sizing: border-box;
}

#right {
	background-color: var(--green-light);
	position: relative;
	left: 50%;
}

#left {
	background-color: var(--green);
	left: 0;
	position: fixed;
	padding-bottom: 100px;
}

img:not(.titleImage img):not(#logoIcon) {
	max-width: 50vw;
	padding-top: 60px;
	padding-bottom: 60px;
	margin-top: 30px;
	margin-bottom: 30px;
}


figure + figure img {
  margin-top: 0 !important;
}

figure:has(+ figure) img {
  margin-bottom: 0 !important;
}

.titleImage  img{
	width: 100%;
	min-height: 100vh;
	max-height: 100vh;
	object-fit: cover;
}

#titleText {
	min-height: 100vh;
	max-height: 100vh;
	display: flex;
	text-align: center;
	align-items: center;
}

.highlight {
	font-size: 4.5vw;
	color: var(--purple);
	font-family: "caveatregular", sans-serif;
	margin: 30px 40px 30px 30px;
}

.highlight br {
	margin-bottom: 20px;
}

ul {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

li {
	list-style: none;
	background-color: var(--brown);
	color: var(--green-light);
	border-radius: 20px;
	text-align: center;
}

figure {
	background-color: var(--green);
}



.animation{
    animation: animationIn 2s forwards;
}

@keyframes animationIn {
    from { transform: translateY(600px); opacity: 0; }
    to   { transform: translateY(0px); opacity: 1; }
}


@media only screen and (max-width: 750px) {
	#left {
		display: none;
	}
	#right {
		left: 0;
		width: 100%;
	}
	#titleText .highlight {
		font-size: 10vw;
	}
	footer {
		margin-left: 0;
	}
	.highlight {
		height: 100vh;
		display: flex;
		align-items: center;
	}
	img {
		max-width: 100vw !important;
	}
}

@media only screen and (min-width: 750px) {
	#right figure {
		display: none;
	}
}