.page {

}
#page1 {
	display: flex;
	padding: 0 10vw;
	box-sizing: border-box;
	flex-direction: column;
	height: auto;
	justify-content: center;
	align-items: center;
	gap: 50px;
    margin-top: 10vh;
}
.directionArrow {
	height: 40px;
	aspect-ratio: 473 / 237;
	background-image: url(img/scroll.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
    cursor: pointer;
}
.directionArrow:hover {
	opacity: 0.5;
	transition: 0.2s;
}
.button {
	position: relative;
	background: var(--backgroundlightdifference);
	padding: 12px;
	border-radius: 32px;
	color: var(--color);
	text-decoration: none;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
	transition: 0.2s;
}
.button:hover {
    opacity: 0.6;
	transition: 0.2s;
}
.bottomLink {
    margin: var(--normalgap);
	bottom: 20px;
	color: var(--backgroundlightdifference);
	text-decoration: none;
	white-space: nowrap;
	font-size: var(--textsize) !important;
}
.workHeader {
	width: 50vw;
}
.workMobile {
	display: none;
	width: 80vw;
	align-items: center;
	gap: 10px;
}
.slideWorkMb {
	width: 100%;
	height: auto;
}
.workPresentation {
	width: 50vw;
	flex-grow: 1;
	height: 70vh;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	display: flex;
	gap: 50px;
}
.slideWork {
	height: 100%;
	width: auto;
	margin: auto;
}
.sideSlide {
	scale: 0.6;
	opacity: 0.7;
	transition: 0.2s;
    cursor: pointer;
}
.sideSlide:hover {
	scale: 0.61;
	opacity: 0.8;
	transition: 0.2s;
}
.middleSlide {
	scale: 1;
	opacity: 1;
}
.workDescription {
	font-size: var(--textsize);
}
.workExplanations {
	width: 50vw;
}
.active {
	background: rgb(150, 150, 150);
	transition: 0.2s;
}
.fade {
	animation-name: fade;
	animation-duration: 0.5s;
}
@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}