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

html,
body {
  width: 100%;
  height: 100%;
  font-family: "Akkurat Mono";
  overflow-x: hidden;
}

.container {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  padding: 2em;
  display: flex;
}

a {
  text-decoration: none;
  text-transform: uppercase;
  color: #000;
  font-size: 12px;
}

.nav-items {
  flex: 1;
}

.nav-items:nth-child(2) {
  display: flex;
  justify-content: center;
  gap: 2em;
}

.nav-items:nth-child(3) {
  display: flex;
  justify-content: flex-end;
}

.filters {
  position: fixed;
  top: 10%;
  right: 0;
  margin: 1em;
  padding: 1em;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5em;
}

button {
  width: max-content;
  border: none;
  outline: none;
  padding: 0.5em 1em;
  background-color: #e3e3e3;
  font-family: "Akkurat Mono";
  font-size: 12px;
  text-transform: uppercase;
  cursor: pointer;
}

button.active {
  background-color: #000;
  color: #fff;
}

.items {
  position: absolute;
  top: 65%;
  left: 0;
  transform: translateY(-50%);
  padding: 0.5em;
  display: flex;
  gap: 0.5em;
}

.item {
  width: 250px;
  padding-top: 25px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  background-color: #000;
  overflow: hidden;
  will-change: width;
}

.item img {
  width: 75px;
}
