* {
  margin:0;
  padding:0;
  box-sizing: border-box;
  font-family: 'Times New Roman', Times, serif;
}

body {
  display: flex;
  flex-direction: column;
  padding: 2rem;
}

.footer {
  padding: 0.5rem;
  font-size: 13.5px;
}

#footer2 {
  display: none;
}

.info {
  display: none;
}

.CategoryTitle {
  font-size: xx-large;
  font-weight: 800;
  color: maroon;
  margin-bottom: 0.5rem;
}

.CategoryBox {
  margin: 0 0 1rem 0;
  padding: 0 0 0.5rem 0;
  border: 5px;
  border-style: solid;
  border-color: maroon;
  background-color: white;
  display: flex; 
  flex-direction: row;
  flex-wrap: wrap;
}

.item {
  width: 50%;
  padding: 0.5rem 0.5rem 0rem 0.5rem;
}

#Softdrink>.item {
  width: 100%;
}

.itemtitle, .itemtag, .price{
  display: inline-block;
}

.itemtitle {
  font-size: 17px;
  font-weight: 600;
  margin-right: 0.5rem;
}

.price {
  font-size: 11px;
  float: right;
  margin-right: 2rem;
}

.itemdesc {
  font-size: 14px;
}

.textwithicon {
  display: flex;
  align-items: center;
}

[class*="icon_"] {
  height: 14px;
  width: 14px;
  display: inline-block;
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}

.icon_gf {
  content: url('../img/icon_gf.png');
}

.icon_go {
  content: url('../img/icon_go.png');
}

.icon_v {
  content: url('../img/icon_v.png');
}

.icon_vo {
  content: url('../img/icon_vo.png');
}

.icon_r {
  content: url('../img/icon_fishcake.png');
}

.icon_m {
  content: url('../img/icon_money.png');
}

.icon_ar {
  content: url('../img/double-arrow-right.png');
  margin-left: 0.5rem;
}

@media (max-width: 576px) {
  .item {
    width: 100%;
  }
}