html {
    margin: 0px;
}


body {
    margin: 0px;
background-color: #f4f2f2;
font-family: Lora,Sans-serif;
}
a {
    text-decoration: none;
    color:inherit;
}

.topBar {
    background-color: #907070;
    color:#e2d7d7;
    text-align: center;
    text-transform: uppercase;
    font-size: 11px;
    padding: 2px;
}

.page {
    width: 1200px;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
}

.topBrand {
    font-family: Yeseva One;
    font-size: 32px;
    padding-top: 10px;
}

.topBanner {
    background-image: url('/images/banner.jpeg?v=2');
  height: 300px;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.topBanner DIV {
    text-align: center;
  font-size: 40px;
}

.menu {
    display: flex;
  border-bottom: 1px solid black;
  gap:20px;
  cursor: pointer;
}

.menuItem {
    min-width: 85px;
}

/* Position submenus relative to parent list item */
ul {
    list-style: none;
    padding: 0;
  }

.menu li {
    position: relative;
    display: block;
  
  }
  
  .menu ul {
    /* Hide my submenus by default */
    display: none;
    /* Position submenus, when open */
    position: absolute;
    left: 0;
    top: 100%;
    background-color: #FFF;
  padding: 5px;
  opacity: 0.9;
  width: 100%;
  z-index: 2;

  }
  
  .menu li:hover > ul {
    display: block;

  }


  @media only screen and (max-width: 600px) {
    .page {
      padding: 2px;
    }

    .menuItem {
      min-width: auto !important;
    }
    .menu ul {
      min-width: 100px !important;
    }
    .topBanner {
      background-size: contain;
      background-repeat: no-repeat;
    }
    .catalogFlex {
      justify-content: center;
    }
    .basketFlex {
      justify-content: flex-start !important;
    }
    .basketLineDiv {
      padding-right: 0px !important;
      width: 60% !important;
    }
    .basketFlex IMG {
      height: 150px !important;
    }
    .checkoutTable {
      float: none !important;
      margin-left: 20px;
    }

  }