.main-container {
	width: 100%;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	background: url('/src/monopoly2.webp');
	background-size: cover;
	background-position: center;
	position: relative;
	z-index: -2;
	position: fixed;
	top: 0;
}



.scene-trigger {
	width: 100%;
	height: 100vh;
}

.scene-trigger.n1 {
	height: 50vh;
}

.scene-trigger.n2 {
	height: 60vh;
}

.scene-trigger.n3 {
	height: 70vh;
}

.scene-trigger.n4 {
	height: 90vh;
}

.scene-trigger.n5 {
	height: 1px;
}

.main-container-overlay {
	position: absolute;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.3);
	z-index: -1;
}

.main-text {
	font-size: 9vw;
	color: #fff;
	text-align: center;
	letter-spacing: 4px;
	padding: 0.8em;
	font-weight: bold;
	animation: smooth-in 0.5s ease-out;
}

@media (orientation: portrait) {
	.main-text {
		font-size: 14vw;
	}
}

.wall-text {
	translate: 40px;
	opacity: 0;
	transition-property: translate opacity;
	transition-duration: 300ms;
	transition-timing-function: ease-out;
}

.slide-in {
	translate: 0;
	opacity: 1;
}



.scroll-spacer {
	height: 200vh;
}

.microsoft-container {
	display: flex;
	width: 100%;
    position: fixed;
    height: 100%;
    flex-direction: column;
    top: 0;
    justify-content: center;
    align-items: center;
}

.microsoft-squares {
	width: 100vmax;
	aspect-ratio: 1;
	max-height: 100vh;
	display: grid;
	grid-template-columns: auto auto;
}

.microsoft-container.fancy {
	mix-blend-mode: color;
}

.microsoft-container.normal {
	opacity: 0;
}

.microsoft-squares .square-container {
	width: 0%;
	position: relative;
}

.square-container .square:not(.second) {
	flex-grow: 1;
	flex-shrink: 1;
}

.square-container .square.second {
	height: 0;
}

.square-container {
	display: flex;
	justify-content: stretch;
	align-items: stretch;
	flex-direction: column;
}

.microsoft-squares .square-container.inverse {
	margin-left: auto;
}

.red {
	background-color: #f35325;
}

.green {
	background-color: #81bc06;
}

.blue {
	background-color: #05a6f0;
}

.yellow {
	background-color: #ffba08;
}

.message {
    font-size: 5vw;
    padding: 0 5vw;
	height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	text-wrap: balance;
}

.message.n1 {
	margin-left: 25%;
	width: 75%;
}

.message-window {
	font-weight: bold;
	height: 100vh;
	font-size: 5.8vmax;
	padding: 8vw;
	width: 100vw;
	height: 100%;
	position: fixed;
	top: 0;
	color: #000;
	z-index: 1;
}


.message-window {
	translate: 100vw;
}

.img {
	width: 40%;
	border-radius: 5px;
	opacity: 0;
	transition-property: opacity filter scale;
	transition-duration: 300ms;
	transition-timing-function: ease-out;
	filter: saturate(0);
	scale: 0.9;
}

.fade-in {
	opacity: 1;
	filter: saturate(1);
	scale: 1;
}

.message.n2 {
	display: flex;
	gap: 5vw;
	padding: 5%;
}

@media (orientation: portrait) {
	.message.n2 {
		flex-direction: column;
	}
	.img {
		width: 100%;
	}
}

.tiny-space {
	width: 100%;
	height: 1000px;
}

.message.n3 {
	background-color: #fff;
	color: #000;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 2%;
	height: 100vh;
}

.m-p2, .m-p3 {
	translate: 0 100vh;
}

.black-spacer {
	background-color: #000;
	height: 20vh;
	width: 100%;
}

.white-spacer {
	background-color: #fff;
	height: 40vh;
	width: 100%;
}


@media (orientation: portrait) {
	.message.n1 {
		font-size: 5.5vw;
	}
	.message-window, .message.n2, .message.n3 {
		font-size: 10vw;
	}
}





.white-spacer.n2 {
	height: 17.5vh;
	display: flex;
	justify-content: center;
}

.white-spacer.n2 > * {
	translate: 0 -10vh
}