main {
	width: 100%;
	height: calc(100vh - 60px);
	margin-top: 60px;
	background-image: url("../images/contact-photo.png");
	background-size: 70vh;
	background-repeat: no-repeat;
	background-position: left;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

main p {
	font-size: 16px;
	line-height: 26px;
	max-width: 550px;
}

main a {
	margin-top: 40px;
	font-size: 16px;
	display: block;
	background-color: var(--site-color-01);
	padding: 10px 20px;
	width: fit-content;
	border-radius: 20px;
	transition: all ease-in-out 200ms;
}

main a:hover {
	background-color: #000000;
	color: var(--site-color-01);
}

main .main-intro {
	position: relative;
	width: 500px;
	margin-left: auto;
	margin-right: 8vw;
}

/* MOBILE VERSION */


@media only screen and (max-width: 992px) {
	main {
		width: 100%;
		height: calc(100vh - 60px);
		margin-top: 50px;
		background-image: url("../images/contact-photo.png");
		background-size: 10vh;
		background-repeat: no-repeat;
		background-position: top;
		display: flex;
		flex-direction: column;
		justify-content: center;
		margin-left: 0;
	}

	main .main-intro {
		width: 100%;
	}
	
}
