@media screen and ( max-width: 800px ) {
	.columns {
		flex-direction: column;
	}
	.content {
		margin: 1rem;
		margin-top: 4.5rem;
	}
	.navigation {
		position: fixed;
		top: 0px;
		left: 0px;
		right: 0px;
		height: 3.5rem;
		overflow: hidden;
		flex-direction: column;
		width: 100%;
		border-radius: 0px;
		padding: 0px 1rem;
		grid-gap: 1rem;
		box-sizing: border-box;
		z-index: 750;
		transition: 0.15s;
	}
	.navigation.active {
		height: 100%;
	}
	.navigation > .brand {
		height: 3.5rem;
		flex-shrink: 0;
	}
	.navigation > .navitems {
		flex: initial;
		flex: 1;
	}
	.navigation > .userarea {
		flex: initial;
	}
	.navigation > .brand > img {
		height: 2rem;
	}
	.navigation > .brand > .nav-toggle {
		display: flex;
		flex: 1;
		justify-content: end;
	}
	.jumbotron {
		justify-content: center;
		padding: 2.5rem;
		text-align: center;
	}
	.jumbotron > span {
		font-size: 3.5rem;
	}
	.footer {
		margin-left: 1rem;
	}
	.modal-wrapper {
		min-width: unset;
		max-width: unset;
		width: 100%;
	}
}