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




nav {
    background-color: rgb(151, 231, 140);
    position: fixed;
    /* fill whle browser */
    width:100%;
    /* be flexbox */
    display: flex;
    /* automaticaly space */
    justify-content: space-around;
    padding-right: 5%;


    
    padding:20px;
    font-size: 23px;
}

html {scroll-behavior: smooth;
}

/* link color */
a {
    color:rgb(255, 255, 255);
    /* remove underline */
    text-decoration:none;
    font-family: 'Signika Negative', sans-serif;
}

a:hover {
    color:rgb(229, 182, 55);
    text-decoration:underline;
}


img{ 
    /* make all things fill the surrounding size */
    width: 100%;}

#container {
    /* nav bar cover */
    padding-top:62px;
}

#header {
    font-size: 50px;
    padding: 22px;
    background-color:rgb(255, 199, 120);
    font-family: 'Abril Fatface', cursive;
    color:rgb(255, 255, 255);
}

#step1, #step2, #step3, #step4, #step5, #step6, #step7, #step8, #step9, #step10 {
    display: flex;
}

#text1, #text2, #text3, #text4, #text5, #text6, #text7, #text8, #text9, #text10 {
    padding: 10px;
    font-size: 20px;
    font-family: 'Signika Negative', sans-serif;
    width: 25%;
    color:rgb(41, 41, 41)
}

#pic1, #pic2, #pic3, #pic4, #pic5, #pic6, #pic7, #pic8, #pic9, #pic10 {
    width: 75%;
}


#s1columns {
    display: flex;
    background-color: rgb(164, 211, 255);
    width:90%;
    padding: 10px;
    margin: auto;
}


#s2columns {
    background-color: rgb(191, 255, 157);
    width:90%;
    padding: 10px;
    margin: auto;
}

#s3columns {
    background-color: rgb(255, 238, 139);
    width:90%;
    padding: 10px;
    margin: auto;
}

#s4columns {
    background-color: rgb(255, 183, 201);
    width:90%;
    padding: 10px;
    margin: auto;
}

#s5columns {
    background-color: rgb(255, 204, 174);
    width:90%;
    padding: 10px;
    margin: auto;
}

#s6columns {
    background-color: rgb(255, 238, 145);
    width:90%;
    padding: 10px;
    margin: auto;
}

#s7columns {
    background-color: rgb(229, 249, 142);
    width:90%;
    padding: 10px;
    margin: auto;
}

#s8columns {
    background-color: rgb(164, 211, 255);
    width:90%;
    padding: 10px;
    margin: auto;
}

#s9columns {
    background-color: rgb(219, 184, 255);
    width:90%;
    padding: 10px;
    margin: auto;
}

#s10columns {
    background-color: rgb(255, 183, 201);
    width:90%;
    padding: 10px;
    margin: auto;

}



/* tablet and smaller */

@media screen and (max-width: 1020px) {
    /* this code only works on screens smaller than 1024 */

    #text1, #text2, #text3, #text4, #text5, #text6, #text7, #text8, #text9, #text10 {
        padding: 10px;
        font-size: 18px;
        font-family: 'Signika Negative', sans-serif;
        width: 25%;
        color:rgb(41, 41, 41)
    }
}

/* phone stuff */
@media screen and (max-width: 400px) {

    body {
        font-size: 20px;
    }
    
    #text1, #text2, #text3, #text4, #text5, #text6, #text7, #text8, #text9, #text10 {
        padding: 10px;
        font-size: 13px;
        font-family: 'Signika Negative', sans-serif;
        width: 25%;
        color:rgb(41, 41, 41)
    }

    a{
        font-size:15px
    }

}

