/* 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{display:flex;
flex-direction: row;
gap: 15px;
align-items: center;
background-color: rgb(18, 246, 41);
justify-content: space-evenly;
}
#headtext{text-align: center ;}
#searching{float:right;}
h2{font-weight: bolder;}
#ShoppingGrid{
    padding:10px;
    margin-top: 5px;
    display:grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 3px;
    grid-template-areas: 
    "TITLE item2 TITLE2 item4"
    "item5 item6 item7 item8"
    "item9 TITLE3 item11 item12"
    "item13 item14 item15 item16";
    background-color: rgb(62, 187, 58);
}
#VIPTITLE{grid-area: TITLE;}
#BOXITEM{grid-area: item2;}
#CLOTHESTITLE{grid-area: TITLE2;}
#SOCKSITEM{grid-area: item4;}
#BANANAITEM{grid-area: item5;}
#MONAITEM{grid-area: item6;}
#BELTITEM{grid-area: item7;}
#SHIRTSITEM{grid-area: item8;}
#TPITEM{grid-area: item9;}
#MISCTITLE{grid-area: TITLE3;}
#WORMITEM{grid-area: item11;}
#REMAINSITEM{grid-area: item12;}
#SIGNITEM{grid-area: item13;}
#COOKIEITEM{grid-area: item14;}
#RINGITEM{grid-area: item15;}
#PLUSHITEM{grid-area: item16;}
.Item>img{width: 200px; height:auto;}

div>h3{font-weight: bolder;
padding: 20px;}

main>div{
    background-color: rgb(18, 246, 41);
    text-align: center;
    border: 2px solid black;
    border-radius: 10px;
    margin: auto;
}
#MeetUs{background-color: white; text-align: left;}
footer{font-style: italic;}
#FAQFlex{display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
background-color: rgb(62, 187, 58);
padding: 10px;}
#FAQFlex>div{background-color: rgb(18, 246, 41);
border: 2px solid black;
border-radius: 10px;
padding: 10px;
width: 45%;}

iframe{
    width:200px;
    height:auto;
}
#MeetUs img{
    width:auto;
    height:33px;
}
#Deternary{border-radius: 70%;}
#MeetUs{display:flex;
flex-direction: row;
gap: 15px;
align-items: center;
justify-content: center;}
#TwitchLogo{border-radius: 50%;}
.shadows-into-light-regular {
  font-family: "Shadows Into Light", cursive;
  font-weight: 400;
  font-style: normal;
}
#contactForm{
    margin: auto;
    width: 50%;
    background-color: rgb(18, 246, 41);
    border: 2px solid black;
    border-radius: 10px;
    padding: 10px;
    display:flex;
}
aside>form>fieldset{
    border: none;
    margin-right: 20px;
}
aside>form>fieldset>*{
margin-top: 10px;
}
legend{
    font-weight: bolder;
    font-size: 1.2em;
}
label{
    display: inline-block;
    width: 100px;
    font-weight: bolder;
}
.reQ::after{
    content: "*";
    color: red;
}
#EmptyCart{text-align: center;
margin-top: 50px;}
#EmptyCart>img{margin-bottom: 20px;}
#EmptyCart>p{font-size: 1.1em;
margin-top: 10px;}