@font-face {
  font-family: 'Berlin Sans FB Demi Bold';
  font-style: normal;
  font-weight: normal;
  src: local('Berlin Sans FB Demi Bold'), url('/static/font/BRLNSDB.woff') format('woff');
}
* {
  box-sizing: border-box;
  font: 1rem 'Berlin Sans FB Demi Bold', sans-serif;
  color: #ffddbb;
}
.yellow {
  color: #ffd302;
}
.orange {
  color: #fe7101;
}
.red {
  color: #f12e39;
}
.beige {
  color: #ffd297;
}
a {
  color: #56311b;
  text-decoration: underline dashed 1px;
}
a:hover:not(.button) {
  text-decoration: underline;
}
a.button {
  cursor: pointer;
  color: #fcc585;
  background: #56311b;
  font-size: 1rem;
  padding: 5px 10px;
  border-radius: 8px;
  box-shadow: 0 0 0 #0009;
  transform: translate(0, 0);
  transition: all 0.2s ease-in-out;
  text-decoration: none;
  display: inline-block;
}
a.button:hover {
  box-shadow: -4px -4px 8px #0009;
  transform: translate(4px, 4px);
  background: #fcc585;
  color: #56311b;
}
span,
a {
  font: inherit;
}
p {
  margin: 0;
}
body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  overflow: hidden auto;
  display: flex;
  flex-direction: column;
  background: #000 url('/static/img/kfc_background.webp') center center / cover no-repeat;
}
body header {
  background-color: #fcc585;
  height: 60px;
  padding: 5px;
  font-size: 1.5em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
body header img {
  height: 100%;
  width: auto;
}
body header .account {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 100%;
}
body header .account a {
  color: #56311b;
  font-size: 1.5em;
}
body header .account a.icon {
  height: 32px;
  width: 32px;
  background: center / contain no-repeat;
}
body header .account a.lock {
  background-image: url('/static/img/icon/padlock.png');
}
body header .account a.leaderboard {
  width: 64px;
  background-image: url('/static/img/leaderboardKFC.webp');
}
body .chicken {
  z-index: -1;
  width: 200px;
  height: auto;
  position: absolute;
  top: -500px;
  left: -500px;
}
body main {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
}
body footer {
  background-color: #fcc585;
  height: 30px;
  padding: 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
body footer p {
  color: #56311b;
}
