html {
  background: url(img/bg.png) no-repeat center center fixed;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}
body {
  font-family: "Lato", sans-serif;
  text-align: center;
}
svg.logo {
  max-width: 1000px;
}
#main-panel {
  max-width: 900px;
  height: 60px;
  padding: 10px;
  border: 2px solid black;
  margin: 4px auto;
}
#main-panel div {
  float: left;
  font-size: 48px;
  line-height: 60px;
  margin-right: 15px;
}
#main-panel div.search {
  float: none;
  display: flex;
  align-items: center;
}
#main-panel input[type="text"] {
  height: 24px;
  width: 100%;
  margin-top: 16px;
}
#mobile-logo {
  display: none;
}
img.token-logo {
  height: 60px;
}
#items-list {
  max-width: 900px;
  border: 2px solid black;
  margin: 4px auto;
  padding: 10px;
}
div.item {
  display: inline-block;
  width: 200px;
  height: 200px;
  border: 2px solid black;
  margin: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: white;
  vertical-align: top;
  position: relative;
}
div.item-name {
  background-color: rgba(255, 255, 255, 0.65);
  font-weight: bold;
}
div.item-price {
  border: 1px solid black;
  background-color: rgb(11, 103, 230);
  border-radius: 5px;
  padding: 5px;
  position: absolute;
  right: 5px;
  bottom: 5px;
}
@media only screen and (max-width: 600px) {
  /* For mobile phones: */
  #desktop-logo {
    display: none;
  }
  #mobile-logo {
    display: inline;
  }
  #main-panel div {
    font-size: 32px;
  }
}
