@import url("style.css");

 
body {
	height: 100vh;
}

#contact {
	line-height: 2.2rem;
	display: flex;
	flex-direction: row;
	width: 100vw;
	font-size: 1.4rem;
	font-weight: 100;
}

header {
	margin-bottom: 0.97rem;
}

div.left {
width: 50vw;
}

#contact h1 {
	font-size: 1.4rem;
	font-weight: 100;
}

#contact p {
	width: 50vw;
}

a:link {
	text-decoration: none;
	color: white;
}

a:visited {
	color: white;
}

footer {
	position: absolute;
	bottom: 0;
	width: 100vw;
}


@media screen and (max-width: 750px) {
/* start of phone styles */

	body {
		height: 100vh;
		top: 0;
		bottom: 0;
	}
	
	#contact {
		flex-direction: row-reverse;
		font-size: 1.25rem;
	}
	
	br.test {
		display: none;
	}
	
	h1 {
		font-size: 1.25rem !important;
	}
	#contact .left {
		display: none;
	}
	
	.right {
		width: 100%;
		padding-left: 0.75rem;
		margin-top: 70px;
	}
	
	#contact p {
		width: 100%;
	}
	
	footer {
		position: absolute;
		bottom: 0;
		padding-right: 0;
	}
}