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;
}

body {
  background-color: rgb(189, 189, 189);
}

main {
    display: grid;
    grid-template-areas: 
    "fig1 fig1 div1";

    grid-template-columns: auto auto 1fr;
    grid-template-rows: 1fr;
    margin-top: 10px;
    margin-right: 5px;
}

nav {
  margin-left: 4px;
  margin-top: 3px;
  display: flex;
  flex-flow: row;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: white;
}

#Wrench {
  height: 3%;
  width: 3%;
  margin-top: 5px;
}

input[type=text] {
  width: 50%;
  height: 50%;
  box-sizing: border-box;
  border: 2px solid #ccc;
  border-radius: 4px;
  font-size: 16px;
  background-color: white;
  background-image: url('Images/Search.png');
  background-size: 30px;
  background-position: 10px 10px; 
  background-repeat: no-repeat;
  padding: 12px 20px 12px 40px;
  margin-left: 5px;
  margin-top: 5px;
}

#shop {
  margin-left: 10px;
}

a {
  font-size: 45px;
  margin-left: 10px;
  color: black;
  text-decoration: none;
}

figure {
  grid-area: fig1;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: white;
  margin-left: 10px;
}

figcaption {
  font-size: 35px;
  margin-left: 10px;
}

#div1 {
  grid-area: div1;
  font-size: 35px;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: white;
}

#Turbo {
  width: 50%;
}

input[type=submit] {
  width: 30%;
  height: 30%;
  box-sizing: border-box;
  border: 2px solid #333;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  background-color: white;
  cursor: pointer;
  font-size: 20px;
}

footer {
    display: block;
    text-align: center;
    margin: 10px;
    border: 2px solid black;
    background-color: white;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}