main {
	display: flex;
	flex-direction: row;
}

.welcome {
	width: 50%;
	display: flex;
	flex-direction: column;
}

.welcome .title {
	font-size: 6rem;
	font-weight: 600;
	text-align: left;
	margin: 0 0 2rem 10rem;
	color: var(--primary-color);
}

.welcome .subtitle {
	font-size: 2rem;
	text-align: left;
	margin: 0 0 2rem 10rem;
	color: var(--primary-color);
}

.welcome .links {
	margin: 0 0 0 10rem;
	display: flex;
}

.welcome .links a {
	font-size: 2rem;
	font-weight: 600;
	text-decoration: none;
	margin: 1rem 2rem 1rem 1rem;
	padding: 1.5rem 3rem 1.5rem 3rem;
	border: 0.2rem solid var(--primary-color);
	box-shadow: -0.5rem 0.5rem 0 var(--primary-color);
	transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
	color: var(--primary-color);
}

.welcome .links a:hover {
	transform: translate(0.5rem, -0.5rem);
	box-shadow: -1rem 1rem 0 var(--primary-color);
}

.art {
	width: 50%;
	display: flex;
	justify-content: center;
}

.art img {
	width: 80%;
	height: auto;
	margin: auto;
}

@media (orientation: portrait) {
	main {
		display: flex;
		flex-direction: column-reverse;
	}

	.welcome {
		width: 100%;
	}

	.welcome .title {
		text-align: center;
		margin: 0 1.5rem 0 1.5rem;
	}

	.welcome .subtitle {
		text-align: center;
		margin: 0 1.5rem 0 1.5rem;
	}

	.welcome .links {
		margin: 0;
		display: flex;
		justify-content: center;
	}

	.welcome .links a {
		margin: 3rem 1rem 3rem 1rem;
	}

	.art {
		width: 100%;
	}
}