* {
	box-sizing: border-box;
}

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

body {
	background:black;
        background-image: url("/img/bg.gif");

	font-family: 'Signika', sans-serif;
	overflow: hidden;
}

article {
	width: 50%;
	height: 100%;
	position: absolute;
	top: 0px;
	right: 0px;
	color: white;
	font-weight: 300;
	font-size: 30px;
	line-height: 1.33;
	padding: 0 40px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content {
	max-width: 500px;
	margin-bottom: 10%;
	text-align: center;
}

.profile {
	border-radius: 50%;
    height: 200px;
    box-shadow: 0px 0px 10px black;
}

h1 {
	font-weight: 700;
	font-size: 90px;
	text-shadow: 0px 0px 20px black;
	line-height: 1.1;
	margin: 0;
}

p {
	margin: 0;
	text-shadow: 0px 0px 10px black;
}

.social {
	margin-top: 50px;
	font-size: 0;
}

.social-icon {
	background: #C33638;
	line-height: 1;
	font-size: 34px;
	height: 50px;
	width: 50px;
	margin: 0px 7px 7px 0px;
	padding: 8px 0 0 0;
	border-radius: 5px;
	color: white;
	display: inline-block;
	vertical-align: middle;
	text-align: center;
	transition: all ease-in-out 300ms;
	text-decoration: none;
}

.social-icon:hover {
	background: #a80e10;
}

@media only screen and (max-width: 320px) {
	h1 {
		font-size: 60px;
	}

	article {
		font-size: 20px;
	}

	.content {
		margin: 20% 5% 22.5% 5%;
	}

	.social-icon {
		font-size: 24px;
		height: 40px;
		width: 40px;
		margin: 0px 5px 5px 0px;
	}
}


@media only screen and (min-width: 1920px) {
	article {
		font-size: 44px;
	}

	.content {
		max-width: 760px;
	}

	h1 {
		font-size: 132px;
	}

	.social-icon {
		font-size: 44px;
		height: 66px;
		width: 66px;
		margin: 0px 10px 10px 0px;
		padding: 10px 0px 0px 0px;
	}
}

@media only screen and (max-width: 1000px) {
	article {
		position: static;
		width: 100%;
		height: auto;
		min-height: 100%;
		left: 0;
		top: 0;
	}

	body {
		overflow-y: auto;
	}

	.content {
		width: 95%;
		margin: 10% 5% 12.5% 5%;
	}
}