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

html,
body {
  font-family: "PP Fraktion Mono";
}

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

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 2.5em;
  display: flex;
  justify-content: space-between;
}

nav a {
  text-decoration: none;
  font-size: 13px;
  color: #c5b6af;
  text-transform: uppercase;
}

.blocks-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

#blocks {
  background-color: #131313;
  width: 105vw;
  height: 100vh;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  overflow: hidden;
  z-index: 10000;
}

.block {
  width: 50px;
  height: 50px;
  border: 0.5px solid rgba(255, 255, 255, 0.075);
  transition: border-color 0.3s ease;
}

.highlight {
  border-color: #ebfb1d;
}

.content {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 2em;
  z-index: 2;
  pointer-events: none;
}

.images {
  width: 60%;
  margin: 10em auto;
  display: flex;
  gap: 10em;
}

.col {
  flex: 1;
}

.col:nth-child(2) {
  margin-top: 15em;
}

.img {
  width: 100%;
  height: 300px;
  border: 1px solid #8b807b;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 10px;
  margin-bottom: 10em;
}
