*{
  margin: 0;
}

/* CSS Reset */
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;
}

*{
  margin: 0;
}

body{
    height: 800px;
    width: 100%;
    background-image: linear-gradient(blue,orange);
    border-radius: 50%;
}

/* Set Basic Heading and Typograpghy */

h1 {font-size: 2em} /* 28 pt */
h2 {font-size: 1.571em} /* 22 pt */
h3 {font-size: 1.429em} /* 20 pt */
h4 {font-size: 1.286em} /* 18 pt */
h5 {font-size: 1.143em} /* 16 pt */
h6 {font-size: 1em} /* 14 pt */



h1 {
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 0em;
    font-family: serif;
    color: white;
}

h2, h3, h4, h5, h6{
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0sem;
    font-family: serif;
    color: black;
    padding: 2%;
}

p{
    font-size: .867em; /*12pt*/
    font-family: sans-serif;
    color: black;
    padding: 1%;
}

#container{
    /*background-color: blue;*/
    margin: 0 auto;
    height: 100%;
    width: 80%;
}

header{

    height: 20%;
    /*margin:; */
}

nav{

    height: 10%;
    text-align: center;
    display: flex;
    justify-content: space-around;
    /* margin: ; */
}

.NavCon{
  display: flex;

}
.search{
  flex: 1;
}

.NavCon > ul{
    flex: 1;
    border-style: groove
}


}
aside{


    height: 100%;
    width: 20%;
}

section{


    width: 80%;
    /* margin: ; */
}

main{

    float: center;
    height: 100%;
    width: 80%;

    /* margin: ; */
}


footer{
    /*background-color: blue;*/
    clear:both;
}
