* {
	min-width: 0;
	min-height: 0;
}

body {
	font-family: 'Manrope', serif;
}

h5 {
	font-size: 1.4rem;
}

h1,h2,h3 {
	font-family: 'Montserrat', sans-serif;
	font-weight: bold;
}

.copies {
	color: #444444;
	height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.copies h1 {
	font-size: 4rem;
}

.copies h2 {
	font-weight: normal;
	font-size: 1.5rem;
	line-height: 1.75;
}

.wrapper {
	position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

main {
	position: relative;
	height: 100vh;
}

main > .container {
	padding-top: 5rem;
	padding-bottom: 1rem;
	display: flex;
	align-items: center;
	margin-top: -2rem;
	height: 100%;
}

.backg {
	position: relative;
	background-image: url(/assets/landing/bg-desktop.jpg);
	background-size: cover;
	height: 100vh;
	width: 100%;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
}

@media screen and (max-width: 768px) {
	.backg {
		position: relative;
		height: 14rem;
		filter: unset;
	}
	.logo {
		display: none;
		/*left: 0;
		width: 100%;
		text-align: center;*/
	}
	.copies {
		text-align: center;
		margin-bottom: 4rem;
		color: #444444;
		margin-top: 2rem;
	}

	.copies h1 {
		font-size: 2rem;
	}

	.copies h2 {
		font-size: 1.1rem;
		letter-spacing: -0.75px;
	}
	.form {
		padding: 1.5rem;
	}
	main {
		height: auto;
	}
	main>.container {
		padding-top: 1rem;
		padding-bottom: 1rem;
	}
}