/* @group Reset */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* @end */

/* @group Basics */

body {
	background: #009ec1;
	color: #ffffff;
	font-family: 'Helvetica', 'Montserrat', sans-serif;
	font-weight: 900;
	font-size: 60px;
	line-height: 117%;
}

a {
	color: #fff;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: 0.5s;
}

a:hover {
	border-bottom: 1px solid #ffffff;
}

section {
	padding: 50px;
	margin-bottom: 60px;
}

section:first-child img {
	width: 250px;
	height: auto;
	margin-bottom: 60px;
}

section:last-child {
	margin-bottom: 0px;
}

h1 {
	font-size: 3em;
	color: #ffffff;
	line-height: 110%;
}

h2 {
	font-size: 1em;
	display: inline;
	color: #111;
}

/* @end */

/* @group Scrollbars */

/* width */
::-webkit-scrollbar {
    width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
    background: transparent; 
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #fff;
    transition: background 0.5s;
    cursor: ns-resize;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: #111; 
}

/* @end */

@media screen and (max-width: 1366px) {
	body {
		font-size: 35px;
	}
}

@media screen and (max-width: 1112px) {
	body {
		font-size: 30px;
	}
}

@media screen and (max-width: 1024px) {
	body {
		font-size: 25px;
	}
}

@media screen and (max-width: 414px) {
	body {
		font-size: 20px;
	}
	
	
}

@media screen and (max-width: 414px) {
	body {
		font-size: 20px;
	}
	
	h1 {
		font-size: 2.2em;
	}
	
	section {
		margin-bottom: 20px;
		padding:  30px;
	}
	
	section:first-child img {
		width: 200px;
		height: auto;
		margin-bottom: 50px;
	}
	
}

@media screen and (max-width: 320px) { 
	body {
		font-size: 15px;
	}
	
	section:first-child img {
		width: 150px;
		height: auto;
		margin-bottom: 50px;
	}
	
	section:last-child:after {
		content: "PS: get yourself a better phone.";
		display:  block;
		margin-top: 50px;
	}
}