@import url('https://fonts.googleapis.com/css2?family=Ubuntu:wght@300;400;500;700&display=swap');

* {
	padding: 0;
	margin: 0;
}

html,
body {
	font-size: 10px;
	font-family: 'Ubuntu', sans-serif;
}

/* Landing */
.landing {
	background: url('../img/code.jpg') no-repeat center center/cover;
	height: 100vh;
	display: relative;
	color: #fff;
}

.landing::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.6);
}

.landing .content {
	display: flex;
	flex-direction: column;
	align-items: left;
	justify-content: center;
	text-align: left;
	height: 100%;
	width: 60%;
	margin: auto;
	padding: 0 20px;
	font-size: 1.5rem;
}

.landing .content h2 {
	font-size: 8rem;
	font-weight: 100;
	line-height: 10rem;
}
.landing .content h1 {
	font-size: 1.5rem;
}

.landing * {
	z-index: 10;
}

/* Contact Page */

.contact {
	height: 100vh;
}

.contact .content {
	display: flex;
	width: 100%;
	height: 100%;
	justify-content: center;
	align-items: center;
}
