body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
}

.topnav {
  overflow: hidden;
  background-color: #333;
}

.topnav a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

.topnav a:hover {
  background-color: #ddd;
  color: black;
}

.active {
  background-color: black;
  color: #f2f2f2;
}

.topnav .icon {
  display: none;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}
  .topnav a.icon, #navlogo {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  #navlogo{
    position: absolute;
    right: 35%;
    top: 0;
    background-color: black;
    color: white
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
}

.bar1, .bar2, .bar3 {
    width: 35px;
    height: 6px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

.change .bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 6px);
}

.change .bar2 {opacity: 0;}

.change .bar3 {
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -8px);
}
#navlogo{
        text-decoration: line-through;
        text-transform: uppercase;
        font-size: 100%;
        font-weight: bold;
        float: right
    }
#discount10{
  text-align: center;
  text-transform: uppercase
}
    /* icon to hide navbar on small screens*/
    .topnav .icon{
    padding: 0.5px 5px;
    }

    /*navbar above. content below*/

    /*footer links*/
    .footer {
      position: static;
      left: 0;
      bottom: 0;
      width: 100%;
      background-color: #333;
      text-align: center;
   }
    ul#footerlist li{
      display:inline;
      padding-right: 10px;
  }
  #footerlist img{
    max-width: 30px;
  }
  ul#footerlist .ftext{
      color: #f2f2f2;
      text-decoration: unset;
  }


  * {
    box-sizing: border-box;
}

.row {
    display: -ms-flexbox; /* IE10 */
    display: flex;
    -ms-flex-wrap: wrap; /* IE10 */
    flex-wrap: wrap;
    padding: 0 4px;
}

/* Create four equal columns that sits next to each other */
.column {
    -ms-flex: 25%; /* IE10 */
    flex: 25%;
    max-width: 25%;
    padding: 0 4px;
}

.column img {
    margin-top: 8px;
    vertical-align: middle;
}

/* Responsive layout - makes a two column-layout instead of four columns */
@media screen and (max-width: 800px) {
    .column {
        -ms-flex: 50%;
        flex: 50%;
        max-width: 50%;
    }
}

/* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
    .column {
        -ms-flex: 100%;
        flex: 100%;
        max-width: 100%;
    }
}