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

/* desktop layout */

/* desktop layout */
html {
    scroll-behavior:smooth;
}

img {
    /* make ALL IMAGES fill the surrounding div */
    width: 100%;
}

nav {
    background-color: #f28b66;
    /* stay on the screen all the time */
    position: fixed;
    /* fill the whole browser */
    width: 100%;
    /* be flexbox */
    display: flex;
    /* automatically space */
    justify-content: space-around;
    padding: 15px;
    font-size: 22px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-weight: bold;
}

a {
    /* change all the link colors no matter what */
    color: black;
    /* turns off underlines on links */
    text-decoration: none;
}

a:hover {
    color: #f2bf80;
    text-decoration: underline;
}

#container {
    background-color: #fce3c5;
    padding: 30px;
    /* move the padding to the inside */
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#header {
    background-color: #f2bf80;
    width: 100%;
    font-size: 50px;
    padding: 15px;
      /* move the padding to the inside */
      box-sizing: border-box;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: black;
    font-weight: bold;
    padding-top: 70px;
    text-align: center;
}

#header2 {
    background-color: #f28b66;
    font-size: 30px;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    padding: 10px;
    width: 100;
    font-weight: bold;
}

#col1 {
    background-color:#F2BF80;
    /* 800px/1200px * 100 */
    width: 50%;
    padding: 10px;
}

#col2 {
    background-color: #F2BF80;
    /* 200px/1200px * 100 */
    padding: 10px;
    width: 39%;
    font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

#columns {
    display: flex;
    /* let flexbox be on more than one line */
    flex-wrap: wrap;
}

#left {
    width: 40%;
}

#right {
    width: 40%;
}

#container3 {
    background-color: #fce3c5;
    padding: 30px;
    /* move the padding to the inside */
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#container4 {
    background-color: #fce3c5;
    padding: 30px;
    /* move the padding to the inside */
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

#container5 {
    background-color: #fce3c5;
    padding: 30px;
    /* move the padding to the inside */
    box-sizing: border-box;
    width: 100%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

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

    body {
        font-size: 20px;
    }

    #container {
        background-color: #fce3c5;
        padding: 30px;
        /* move the padding to the inside */
        box-sizing: border-box;
        width: 100%;
        max-width: 1400px;
        margin: auto;
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;

    }

    #col1 {
        /* 512/1024 * 100 */
        width: 100%;
    }
    #col2 {
        width: 100%;
    }

    #left {
        width: 40%;
    }
    
    #right {
        width: 40%;
    }

}

/* phone stuff */
@media screen and (max-width: 600px) {
    #col1 {
        width: 100%;
    }
    #col2 {
        width: 100%;
    }

    nav {
        background-color: #f28b66;
        /* stay on the screen all the time */
        position: fixed;
        /* fill the whole browser */
        width: 100%;
        /* be flexbox */
        display: flex;
        /* automatically space */
        justify-content: space-around;
        padding: 10px;
        font-size: 15px;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        font-weight: bold;
    }

    #header {
        background-color: #f2bf80;
        width: 100%;
        font-size: 40px;
        padding: 15px;
          /* move the padding to the inside */
          box-sizing: border-box;
        font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
        color: black;
        font-weight: bold;
        padding-top: 50px;
        text-align: center;
    }

    #left {
        width: 100%;
        margin-bottom: 60px;
    }

    #right {
        width: 100%;
    }
    
}
