html {
  scrollbar-gutter: stable;
  scrollbar-width: thin;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  color: #121317;
  font-family: 'Google Sans Flex', system-ui, -apple-system, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  padding-bottom: 120px;
}

list-card {
  display: block;
  width: 100%;
}

@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: 200px 0;
  }
}

header {
  padding-top: 96px;
}

@media (max-width: 640px) {
  header {
    padding-top: 48px !important;
  }
}
