header {
  background: black;
  padding: 5px 100px;
  display: flex;
  align-items: center;
}
header #logo img {
  height: 80px;
}
header #logo .iconify {
  font-size: 40px;
  color: white;
}
header .header-right {
  margin-left: auto;
  display: flex;
  font-size: 40px;
  color: white;
}
header .header-right a,
header .header-right .cart-badge {
  margin-left: 40px;
  transition: all 0.3s;
  color: white;
}
header .header-right a:hover,
header .header-right .cart-badge:hover {
  text-decoration: none;
  transform: scale(1.5) !important;
}
@media screen and (max-width: 768px) {
  header {
    padding: 5px 15px;
  }
  header #logo img {
    height: 70px;
  }
}
