html {
  font-family: Roobert, sans-serif;
  background-color: var(--bg);
  color: var(--default-color);
  text-align: center;
}

#site-title {
  color: var(--accent-color);
}

a {
  color: var(--accent-color);
}

.pet-list {
  display: flex;
  flex-flow: row wrap;
  max-width: 950px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 75px;
  justify-content: center;
}

.pet-row {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin-left: auto;
  margin-right: auto;
}

.pet-card {
  background-color: #18181b;
  padding: 12px 12px;
  margin: 5px;
  text-align: center;
  border-radius: 12px;
  width: 156px;
}

.pet-label {
  font-size: 1em;
  font-weight: bold;
}

.pet-image {
  width: 100%;
  max-width: 128px;
  height: auto;
  background: #18181b;
}

.pet-droprateinfo {
  display: none;
  font-size: 0.8em;
}


.pet-killcount, .pet-date, .pet-clip {
  font-size: 0.8em;
}