nav {
	height: 6rem;
	width: 100%;
	display: flex;
	align-items: center;
	border-bottom: 0.1rem solid var(--primary-color);
}

nav .logo {
	display: flex;
	align-items: center;
}

nav .logo .title {
	font-size: 2rem;
	color: var(--primary-color);
	font-weight: 600;
}

nav .logo img {
	height: 2rem;
	margin: 0 1.5rem 0 2rem;
}

nav .links {
	display: flex;
	align-items: center;
	margin: 0 1.5rem 0 auto;
}

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

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

@media (orientation: portrait) {
	nav .title {
		display: none;
	}

	nav .links a {
		margin: 0 0.5rem 0 0.5rem;
	}
}