@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=JetBrains+Mono:wght@100..800&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  color: #fff;
}

body {
  margin: 0;
  background: url("/assets/img/kyle-rodman-FVFheh9j1uI-unsplash.jpg")
    top center / cover no-repeat fixed;
}

.container {
  width: 100%;
  max-width: 1200px;
  min-width: 0;
  margin: 0 auto;
  padding: 20px;

  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.content {
  flex: 1 1 250px;
  min-width: 0;
}

.smiley {
  width: 100%;
  max-width: 100px;
  min-width: 0;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}

.cat-container {
  display: flex;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  margin: 30px;

  flex-wrap: nowrap;
  gap: 1rem;

  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}
.cat {
  height:250px;
  width: auto;
    aspect-ratio: 1/1;
  flex: 0 0 auto;
    object-fit: cover;
}
