body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

header, footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 1em 0;
}

.hidden {
    display: none;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
}


#shop {
  display: flex;
  flex-direction: row;
  background-color: #000;
  height: auto;
  padding-bottom: 15px;
}
a {
  text-decoration: none;
  color: white;
}
.shop-section {
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  color: white;
}
.section-name {
  font-size: 1.5rem;
}

.shop-items {
  display: flex;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  gap: 5px;
}

.shop-item {
  border-radius: 5%;
}

.shop-item:hover {
  opacity: 0.5;
}
.item-badge {
  display: none;
}
.item-price {
  color: black;
}

.rarity-rare {
  background-color: blue;
}
.rarity-epic {
  background-color: purple;
}
.rarity-icon_series {
  background-color: lightblue;
}
.rarity-uncommon {
  background-color: green;
}