/* 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 of css reset */


.container {
    display: grid;
}

input[type="text"] {
    width: 739px;
    height: 50px;
    font-size: x-large;
    border-radius:39px;
    display:block;
    margin: 0 auto;
	border-color: rgb(51, 51, 102);
	background-color:  rgb(245, 251, 255);
}

.banner {
display: inline;
margin: auto;
}

h1 {
	font-size: xxx-large;
	font-weight: bold;
	text-align: center;
	color: rgb(45, 45, 111);
}

hr{
    border-top: 3px dashed rgb(64, 64, 171);
}



body{
	background-image:url("images/bluestarsbackground.jpg");
	display: grid;
}

.container {
    display: grid;
    grid-template-areas: 
        "image1 image2 image3"
        "image4 image5 image6"
        "image7 image8 image9"
        "image10 image11 image12"
		"image13 image14 image15";
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-columns: 1fr 1fr 1fr;
	padding-left: 100px;
	padding-right: 100px;
	padding-top: 15px;
}



.topmenu {
	display:block;
    margin: 0 auto;
}



/* images start */

	/* row 1 plushes */
	a {
		grid-template-areas: 
			"blank image1 image2 image3 blank";
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		justify-content: space-around;
	}
	.image1 {
		width: 420px;
		grid-area: image1;
	}

	.image2 {
		width: 420px;
		grid-area: image3;
	}

	.image3 {
		width: 420px;
		grid-area: image2;
	}

	/* row 2 plushes */
	a {
		grid-template-areas: 
			"blank image4 image5 image6 blank";
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		justify-content: space-around;
	}
	.image4 {
		width: 420px;
		grid-area: image4;
	}

	.image5 {
		width: 420px;
		grid-area: image5;
	}

	.image6 {
		width: 420px;
		grid-area: image6;
	}

	/* row 3 plushes */
	a {
		grid-template-areas: 
			"blank image7 image8 image9 blank";
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		justify-content: space-around;
	}
	.image7 {
		width: 420px;
		grid-area: image7;
	}

	.image8 {
		width: 420px;
		grid-area: image8;
	}

	.image9 {
		width: 420px;
		grid-area: image9;
	}

	/* row 4 plushes */
	a {
		grid-template-areas: 
			"blank image10 image11 image12 blank";
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		justify-content: space-around;
	}
	.image10 {
		width: 420px;
		grid-area: image10;
	}

	.image11 {
		width: 420px;
		grid-area: image11;
	}

	.image12 {
		width: 420px;
		grid-area: image12;
	}

		/* row 5 plushes */
	a {
		grid-template-areas: 
			"blank image10 image14 image15 blank";
		grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
		justify-content: space-around;
	}
	.image13 {
		width: 420px;
		grid-area: image13;
	}

	.image14 {
		width: 420px;
		grid-area: image14;
	}

	.image15 {
		width: 420px;
		grid-area: image15;
	}
	
/* nav bar attempt */
h2, p {
  margin: 10px;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: #324170;
}

ul li {
  float: left;
}

ul li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  background-color: #2525a5;
}

.footer {
	color: rgb(65, 65, 135);
	font-size: small;
}

figcaption {
	text-align: center;
	font-size: larger;
	font-family:'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
	color: rgb(46, 86, 126);
}