* {
    box-sizing; border-box;
    margin: 0px;
    padding: 0px;
}

body {
    font-family: 'Roboto';
    font-size: 20px;
    color: #ffffff;
}

.grid-container {
    display: grid;
    grid-template-areas:
        'header header'
        'nav content'
        'footer footer';
    grid-template-columns: 60% 40% auto auto auto auto;
}

header, .nav, .content, footer {
    padding: 30px;
    margin: 1px; background-color: #00D100;
}

header {
    text-align: center;
    grid-area: header;
    background-color: #76B947;
}

.nav, .content {
    height: 700px;
    color: black;
}

.nav {
    grid-area: nav;
    background-color: #ffffff;
}

.content {
    grid-area: content;
    background-color: #ffffff;
}

footer {
    grid-area: footer;
    background-color: #ffffff;
    font-size: 15px;
}

ul, li {
    margin-left: 10%;
    list-style: circle;
    font-size: 15px;
}

#listBox {
    /* border: 2px solid; */
    width: 50%;
    height: 0px;
    margin: 10px;
    overflow-y: scroll;
}

img {
    padding 0px;
    margin: 15px;
    max-width: 50%;
}

.product-names {
    margin-left: 150px;
    word-spacing: 275px;
}

.text {
    margin: auto;
    text-align: center;
    width: 50%;
}

.arrow {
  border: solid black;
  border-width: 0 3px 3px 0;
  display: inline-block;
  padding: 3px;
}
.down {
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}





.sidebar {
  height: 100%; /* 100% Full-height */
  width: 0; /* 0 width - change this with JavaScript */
  position: fixed; /* Stay in place */
  z-index: 1; /* Stay on top */
  top: 0;
  left: 0;
  background-color: #111; /* Black*/
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 60px; /* Place content 60px from the top */
  transition: 0.5s; /* 0.5 second transition effect to slide in the sidebar */
}

.sidebar a {
  padding: 8px 8px 8px 32px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
  transition: 0.3s;
}

.sidebar a:hover {
  color: #f1f1f1;
}

.sidebar .closebtn {
  position: absolute;
  top: 0;
  right: 25px;
  font-size: 36px;
  margin-left: 50px;
}

.openbtn {
  font-size: 20px;
  cursor: pointer;
  background-color: #111;
  color: white;
  padding: 10px 15px;
  border: none;
}

.openbtn:hover {
  background-color: #444;
}

#main {
  transition: margin-left .5s; /* If you want a transition effect */
  padding: 20px;
}

