body {
	background: #000;
	color: #fff;
}

.about-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-template-rows: 1fr 1fr;
	width: 100vw;
	height: 100vh;
	margin: 0;
	padding: 0;
	margin-top: 5rem;
}

.about-box {
	width: 100%;
	height: 50vh;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.about-img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.about-text {
	font-size: 1.5vw;
	font-family: 'Syne Mono', monospace;
	text-align: center;
	padding: 2vw;
	line-height: 1.2;
	font-weight: regular;
	display: flex;
	align-items: center;
	justify-content: center;
}

@media (max-width: 900px) {
	.about-grid {
		grid-template-columns: 1fr;
		grid-template-rows: repeat(4, 1fr);
		height: auto;
		margin-top: 4.5rem;
	}
	.about-box {
		min-height: 40vw;
	}
	.about-box:nth-child(1) {
		order: 2;
	}
	.about-box:nth-child(2) {
		order: 1;
	}
	.about-box:nth-child(3) {
		order: 3;
	}
	.about-box:nth-child(4) {
		order: 4;
	}
	.about-text {
		font-size: 5vw;
	}
}

.about-link {
	color: #ffffff;
	text-decoration: underline;
	cursor: pointer;
	font-size: 1.3rem;
}

.about-link:hover {
	opacity: 0.7;
}
