@font-face {
    font-family: 'OCRAEXT';
    src: url('./OCRAEXT.TTF');
}

html, body {
	height: 100%;
	margin: 0;
}

html {
	background-repeat: no-repeat;
	background-color: #14172a;
}

div {
	color: white;
}

.wrp {
	font-family: OCRAEXT;
	display: flex;
	flex-direction: column;
	height: 100%;
}

.company {
	font-size: 42px;
}

.motto {
	font-size: 28px;
}

.email span {
	font-family: "Tahoma";
	font-size: 36px;
	vertical-align: middle;
}

.email a {
	color: white;
	font-size: 22px;
	vertical-align: middle;
}

/* Big devices */
@media only screen and (min-width: 641px) {
	html {
		background-image: url('./DesktopBkg.jpg');
	}

	.wrp {
		justify-content: center;
		width: 600px;
		float: right;
	}

	.email {
		margin-top:200px;
	}

	.company {
		margin-bottom: 30px;
	}

	.email span {
		margin-right: 10px;
	}
}

/* Small devices */
@media only screen and (max-width: 640px) {
	html {
		background-color: #020518;
		background-image: url('./MobileBkg.jpg');
	}

	.wrp {
		justify-content: space-around;
		text-align: right;
		margin-right: 10px;
	}

	.email span {
		display: block;
	}
}