/* desktop view */
  
body {
  background: url("/images/shadowbg.png")no-repeat fixed bottom left, 
              url("/images/shadowbgflip.png")no-repeat fixed bottom right, 
              linear-gradient(#44073e,#0e612a, #fac726) no-repeat fixed;
  font-family: Verdana;
  text-align: center;
  cursor: url("/images/fireflycursor.png"), auto;
}

a {
  color: white;
  font-weight: bold;
  cursor: url("/images/fireflycursorHover.png"), auto;
  text-decoration: none;
}

h1,p {
 color: white;
  font-family: Verdana;
  text-align: center; 
}

h1 {
 font-size: 24px; 
}

text {
  font-size: 16px bold;
  text-shadow: 1px 1px 2px black;
}

.content {
  display: flex;
  flex-direction: row;
  align-items: top;
}

.thumbnail {
height: 100px;
width: 100px;
cursor: url("/images/fireflycursorHover.png"), auto;
}

.nav {
padding: 25px 50px;
}

.header {
  padding: 10px;
  font-size: 28px; 
  color: white;
  text-shadow: 1px 1px 2px black;
  cursor: url("/images/fireflycursorHover.png"), auto;
  text-decoration: none;
}

.button_topNav {
  background-color: #44073e;
  width: 150px;
  padding: 5px 10px;
  border-color: #0e612a;
  border-width: 1px 1px 5px 3px;
  border-radius: 25px;
  color: white;
  text-align: center;
  font-size: 18px;
  text-shadow: 1px 1px 2px black;
  cursor: url("/images/fireflycursorHover.png"), auto;
}

.button_topNav:onClick {
  border-width: 5px 3px 2px 2px;
}

.button_topNav:hover {
  background: url("/images/sparkles.png"), #44073e;;
  background-size: 50px 50px;
  border-color: #0e612a;
  border-width: 1px 1px 5px 3px;
  border-radius: 25px;
}

a:hover {
  background: url("/images/sparkles.png");
  background-size: 20px 20px;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: none;
  color: white;
  font-size: 10px;
  text-align: right;
  cursor: url("/images/fireflycursor.png"), auto;
}

/* left side bar */

.filters {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  align-items: left;
  background: none;
  width: 15%;
  height: 100%;
  height: 100%;
  font-size: 18px bold;
  color: white;
  text-shadow: 1px 1px 2px black;
  padding-right: 2px;
}

.sideNav {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: left;
  width: 99%;
  padding: 10px;
  opacity: 1;
}

.filters > a:active {
  background-color: black;
}


.filters > a:focus {
  background-color: blue;
}

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: auto;
  scrollbar-width: none;
  
}

.slides::-webkit-scrollbar, .slides::-webkit-scrollbar-thumb, .slides::-webkit-scrollbar-track {
  display: none;
  background: transparent;
}

.slides > div {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 100%;
 height: 100%;
  transform: transform 0.5s;
  position: relative; 
  display: flex;
  justify-content: left;
  align-items: top;
}

.slides > div:target {
  transform: scale(1);
 }
 /* end of left side bar */ 
 
 /* middle window */

.shopWindow {
  display: flex;
  align-items: top;
  background-color: darkgreen;
  width: 55%;
  height: 500px;
  padding: 10px;
}

/* end of middle window*/

/* right sidebar */
.viewWindow {
  display: flex;
  align-items: top;
  background-color: yellow;
  width: 30%;
  height: viewport-length;
}

/* item pods */
.itemPod {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  width: 20%;
  height: 200px;
  padding: 5px;
}

.itemImg {
  width: 100%;
  height: 160px;
  object-fit: contain;
  border: 1px dashed red;
}

.itemInfoBox {
  display: flex;
  flex-direction: row;
  width: 100%;
  align-items: center;
   border: 1px dashed blue;
}

.itemStock {
  width: 50%;
  text-align: left;
  font-size: 12px;
   border: 1px dashed purple;
}

.itemPrice {
  width: 50%;
  text-align: right;
  color: lawngreen;
   border: 1px dashed green;
}

.itemName {
  width: 100%;
  text-align: center;
   border: 1px dashed gold;
}



