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

html,
body {
  width: 100%;
  height: 100vh;
  font-family: "Test Söhne";
  background-color: #dad8d4;
  color: #000;
}

p,
a {
  text-decoration: none;
  font-size: 13px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1.5em;
  display: flex;
  gap: 4em;
}

.col {
  display: flex;
  gap: 1em;
}

.col:nth-child(1) {
  flex: 4;
}

.col:nth-child(2) {
  flex: 2;
  display: flex;
}

.nav-items {
  flex: 1;
}

.nav-item {
  width: max-content;
  height: 20px;
  margin-bottom: 0.125em;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.item {
  position: absolute;
  width: 175px;
  height: 250px;
  background: #b0b0b0;
}

.loader {
  position: absolute;
  bottom: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 20px;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.loader p,
.nav-item p {
  position: relative;
  display: block;
  transform: translateY(20px);
}
