/* 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;
}

/* DESKTOP & GENERAL */

html {
	scroll-behavior: smooth;
}

#container {
    max-width: 1400px;

    /* Center a div */
    margin: auto;

	/* Push this div down */
	padding-top: 100px;

	text-align: center;
}

#columns {
	/* Flex Box always goes on containing dev */
	display: flex;

	/* allow flexbox to wrap to multiple lines */
	flex-wrap: wrap;
}

#title {
	background-color: hotpink;
	color: white;
	font-weight: bold;
	font-size: 40px;
	margin: auto;
    max-width: 700px;
	padding-top: 25px;
	padding-bottom: 25px;
}

#header{
    margin: 50%;
}

h1 {
    background-color: pink;
	margin: auto;
    max-width: 500px;
}

h2 {
	font-weight: bold;
	font-size: 36px;
}

nav {
	/* Keep the nav on the screen always - on top */
	position: fixed;
	background-color: aquamarine;
	width: 100%;
	display: flex;
	justify-content: space-around;
	padding: 20px;
}

#step {
	font-weight: bold;
	font-size: 40px;
	margin: auto;
    max-width: 700px;
	padding-top: 50px;
}

#text {
    font-weight: normal;
    margin: auto;
    max-width: 600px;
    font-size: 20px;
    padding: 15px 35px 35px 35px;
}

#image {
    padding: 30px;
}

#one {
	width: 30%;
}

#two {
	width: 30%;
}

#three {
	width: 40%;
}

#left {
	width: 50%;
}

#right {
	width: 50%;
}



/* TABLET CSS */

@media screen and (max-width: 1024px) {
	#one {
		/* 512px / 1024px */
		width: 50%;
		font-size: 16px;
	}
	
	#two {
		width: 50%;
		font-size: 16px;
	}
	
	#three {
		width: 100%;
		font-size: 16px;
	}
}





/* PHONE CSS */

@media screen and (max-width: 400px) {
    h1 {
        font-size: 40px;
        font-weight: bold;
    }

    body {
        font-size: 16px;
    }

	#one {
		width: 100%;
        /* font-size: 22px; */
	}
	
	#two {
		width: 100%;
	}

	#three {
		width: 100%;
	}

	#text {
		font-size: 16px;
	}
}