.krimskrams {
  background: #ff0000;
  color: #ffffff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.krimskrams .topbar {
  background: rgba(255, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.krimskrams .brand {
  color: #ffffff;
}

.krimskrams .pill {
  background: #ffffff;
  color: #ff0000;
}

.krimskrams__content {
  flex: 1;
  padding: 160px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.krimskrams__content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.krimskrams__content p {
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
}

.krimskrams .footer {
  background: transparent;
}

.krimskrams .footer,
.krimskrams .footer a {
  color: #ffffff;
}


.sketches {
  position: relative;
  margin-top: 100px;
  height: 600px;
}

.sketch {
  position: absolute;
  width: 220px;
  height: 280px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px dashed rgba(255, 255, 255, 0.5);
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

.sketch--one {
  top: 0;
  left: 0;
  transform: rotate(-4deg);
}

.sketch--two {
  top: 120px;
  left: 260px;
  transform: rotate(3deg);
}

.sketch--three {
  top: 320px;
  left: 80px;
  transform: rotate(-2deg);
}

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