@import url('https://fonts.googleapis.com/css2?family=Open+Sans+Condensed:ital,wght@0,300;0,700;1,300&display=swap');


* {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans Condensed', sans-serif;
}

body {
	background: #000;
	font-family: 'Open Sans Condensed', sans-serif;
	color: #fff;
}

.text {
	display: flex;
	margin-top: 30%;
	margin-left: 40%;
}

.text h2 {
	font-size: 4em;
	font-weight: 700;
	line-height: 1em;
	text-transform: uppercase;
	
}

.text h3 {
	font-size: 2em;
	font-weight: 300;
	line-height: 2.5em;

	padding-left: 8px;
	text-transform: uppercase;
	
}

.mail a{
	font-size: 2em;
	font-weight: 300;
	text-decoration: none;
	color: #fff;
	margin-left: 70%;
}

@media (max-width: 870px) {
	
	.text h2 {
		font-size: 2.5em;
	}
	
	.text h3 {
		font-size: 1.5em;
		line-height: 2em;
	}
	
	.mail a {
		font-size: 1.5em;
	}
}

@media (max-width: 640px) {
	
	.text {
		display: flex;
		margin-top: 20%;
		margin-left: 23%;
	}
	
	.text h2 {
		font-size: 2em;
	}
	
	.text h3 {
		font-size: 1em;
		line-height: 2.5em;
	}
	
	.mail a {
		font-size: 1em;
		margin-left: 60%;
	}
}


