<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  font-size: 18px;
  font-family: 'Capriola', sans-serif;
  line-height: 1.5;
  --white: #FBFBFB;
  --blue: #3E989B;
  --green: #6DB465;
  --yellow: #F2C14E;
  --red: #F78154;
  --violet: #C87694;
  --black: #3C3C3C;
  --shadow-color: rgb(0 0 0, 0.5);
}
body {
  background: var(--black);
  min-width: 360px;
}
._disable-pointer-events {
  pointer-events: none !important;
}
.amazing-menu {
  overflow-x: hidden;
}
.amazing-menu.-scrolled .menu-item {
  transform: perspective(40rem) translateY(-0.5rem) scaleX(0.95) rotateX(-40deg);
}
.menu-item {
  position: relative;
  width: 100%;
  color: var(--white);
  transition: all 210ms cubic-bezier(0.8, 0.1, 0.2, 0.9);
}
.menu-item:nth-of-type(5n + 1) {
  background: var(--blue);
}
.menu-item:nth-of-type(5n + 2) {
  background: var(--green);
}
.menu-item:nth-of-type(5n + 3) {
  background: var(--yellow);
}
.menu-item:nth-of-type(5n + 4) {
  background: var(--red);
}
.menu-item:nth-of-type(5n    ) {
  background: var(--violet);
}
.menu-item:hover,
.menu-item:focus {
  z-index: 1;
  transform: scale(1.1);
  box-shadow: 0 0 1rem var(--shadow-color);
  cursor: pointer;
}
.menu-item .container {
  margin: 0 auto;
  width: 100%;
  max-width: 30rem;
  padding: 2rem 1rem 1rem;
}
.menu-item .container:after {
  display: table;
  content: '';
  clear: both;
}
.menu-item .icon {
  float: left;
  font-size: 2rem;
  margin-top: -0.5rem;
  margin-right: 0.5rem;
}
.menu-item .title {
  float: left;
  text-transform: uppercase;
  font-weight: 600;
}
.menu-item .rating {
  float: right;
}
.menu-item .rating.-r1 .stars span:nth-of-type(2),
.menu-item .rating.-r1 .stars span:nth-of-type(3),
.menu-item .rating.-r1 .stars span:nth-of-type(4),
.menu-item .rating.-r1 .stars span:nth-of-type(5) {
  opacity: 0.5;
}
.menu-item .rating.-r2 .stars span:nth-of-type(3),
.menu-item .rating.-r2 .stars span:nth-of-type(4),
.menu-item .rating.-r2 .stars span:nth-of-type(5) {
  opacity: 0.5;
}
.menu-item .rating.-r3 .stars span:nth-of-type(4),
.menu-item .rating.-r3 .stars span:nth-of-type(5) {
  opacity: 0.5;
}
.menu-item .rating.-r4 .stars span:nth-of-type(5) {
  opacity: 0.5;
}
.menu-item .rating .text {
  font-size: 0.7rem;
  opacity: 0.8;
}
.menu-item .arrow {
  float: right;
  margin-left: 0.5rem;
}</pre></body></html>