/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */


html, body {
    height: 100%;
}

html {
    display: table;
    margin: auto;
}

button {
  background-color: #FFEFD1;
  color: #232323;
  padding: 12px 24px;
  text-align: center;
  display: inline-block;
  font-size: 20px;
  border-radius: 15px;
}

button:hover {
  background-color: #232323;
  color: #FFEFD1;
}

/* Entire "Page"/workspace size. */
body {
  display: table-cell;
  vertical-align: middle;
  background-image: url("https://wallpapers.com/images/hd/bamboo-tree-village-pixel-art-pjgckoe6j5at0k51.webp");
  background-position: center; /* Center the image */
  background-repeat: no-repeat; /* Do not repeat the image */
  background-size: stretch; /* Resize the background image to cover the entire container */
  font-family: Arial, Helvetica, sans-serif, Tahoma;
  color: #000000;
  font-size: 12px;
  line-height: 1.5;
  width: 1440px;
  height: 900px;
  justify-content: center; /* Centers content horizontally */
  align-items: center; /* Centers content vertically */  
}

* {
  box-sizing: border-box;
}

/* Style the header */
header {
  background-color: #FFF7E7;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  color: #232323;
  margin: 5px;
  width: 100%;
  height: 10%;
}

/* Container for flexboxes "wrapper" */
section {
  display: flex;
  width: 100%;
  height: 85%;
}
sectionshop {
  display: flex;
  width: 100%;
  height: 95%;
}

/* Style the navigation menu "div"*/
nav {
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  background: #FFF7E7;
  padding: 5px;
  margin: 5px;
}

/* Style the list inside the menu */
nav ul {
  list-style-type: none;
  padding: 0;
}

/* Style the content area "div"*/
article {
  display: inline-block;
  flex-direction: column;
  background-color: #FFF7E7;
  width: 85%;
  padding: 20px;
  margin-left: 5px;
  margin-top: 5px;
  margin-bottom: 5px;
  overflow: auto;
  line-height: 1.2;
  font-family: Tahoma;
  text-align: justify;
  font-size: 15px;
}


/* Style the footer */
footer {
  background-color: #FFF7E7;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #232323;
  margin: 5px;
  width: 100%;
  height: 5%;
}

.special {
  display: grid;
  align-items: flex-end;
  grid-template-columns: 75% 25%;
}
.grid-container2 {
  display: grid;
  align-items: center;
  grid-template-columns: 30% 50% 15% 5%;
}
.grid-container3 {
  display: grid;
  column-gap: 10px;
  grid-template-columns: 22% 45% 30%;
}
/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

.desc {
  border: 1px solid black;
  display: grid;
  align-items: center;
  padding:5px;
  margin-top:5px;
  width: 100%;
  height: 335px;
}

.stock {
  border: 1px dotted black;
  justify-content: center;
  text-align: center;
  align-items: center;
  padding:5px;
  margin-top:5px;
  width: 100%;
  height: 200px;
}

h1 {
  font-family: Tahoma;
  text-align: left;
  font-size: 30px;
}

h5 {
	background-color: #FFEFD1;
	color: #232323;
  margin: 5px;
  font-size: 20px;
  font-style: italic;
}

table, th, td {
  border:1px solid white;
  text-align: right;
}

.item {
	width: 86px;
  height: 86px;
}

.cura {
	width: 128px;
  height: 128px;
}