@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7Z1JlFc-K.woff2) format('woff2');
	unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

@font-face {
	font-family: 'Poppins';
	font-style: normal;
	font-weight: 700;
	src: url(https://fonts.gstatic.com/s/poppins/v21/pxiByp8kv8JHgFVrLCz7Z1xlFQ.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoorCMPrEHJA.woff2) format('woff2');
	unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
	font-family: 'Raleway';
	font-style: normal;
	font-weight: 500;
	src: url(https://fonts.gstatic.com/s/raleway/v34/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoorCIPrE.woff2) format('woff2');
	unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

*, ::after, ::before {
	box-sizing: border-box;
	margin: 0;
}

html, body {
	height: 100%;
}

body {
	background: -webkit-linear-gradient(to right, #434343, #000000);
	background: #222222 linear-gradient(to right, #434343, #000000);
	
	-webkit-tap-highlight-color: transparent;
	-webkit-text-size-adjust: 100%;
	-webkit-user-select: none;
}

main, section, nav {
	display: flex;
}

main {
	align-items: center;
	height: 100%;
}

section {
	width: 100%;
	max-width: 1140px;
	margin: 0 auto;
	flex-direction: column;
}

section * {
	transition: font-size 0.3s;
}

section h1 {
	font-family: Poppins, sans-serif;
	font-size: 3rem;
	line-height: 1;
	font-weight: 700;
	color: rgba(255, 255, 255, 1.0);
}

section h2 {
	font-family: Raleway, sans-serif;
	font-size: 1.5rem;
	line-height: 1.2;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.8);
	margin: 1.2rem 0;
}

section h2 span {
	border-bottom: 2px solid rgba(255, 255, 255, 0.8);
}

nav a {
	display: flex;
	justify-content: center;
	align-items: center;
	background: rgba(255, 255, 255, 0.07);
	transition: background .15s ease-in-out;
	color: #fff;
	margin-right: 8px;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	
}

nav a:hover {
	background: rgba(255, 255, 255, 0.2);
}

nav svg {
	height: 16px;
	width: 16px;
}

@media (max-width: 992px) {
	main h1 {
		font-size: 2.25rem;
	}
	main h2 {
		font-size: 1.25rem;
	}
	section {
		align-items: center;
	}
}