#balls {
  position: absolute;
  top: 20%;
  right: 5%;
  height: 140px;
  aspect-ratio: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.ball {
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
}

#lines {
  position: absolute;
  bottom: 5%;
  right: 5%;
  display: grid;
  width: 300px;
  gap: 20px;
}

.line {
  width: 200px;
  height: 25px;
  background-color: white;
}

.line:nth-child(even) {
  justify-self: end;
}

#vert-lines {
  display: flex;
  position: absolute;
  top: 0;
  left: 13.1%;
  height: 100%;
  justify-content: space-between;
  flex-direction: column;
}

.vert-line {
  height: 15.5%;
  width: 25px;
  background-color: var(--secon);
}

#horz-lines {
  display: flex;
  position: absolute;
  top: 10%;
  width: 100%;
  justify-content: space-between;
}

.horz-line {
  width: 8%;
  height: 25px;
  background-color: var(--secon);
  mix-blend-mode: multiply;
}

#rects{
  position: absolute;
  bottom: 5%;
  left: 32%;
}

.rect {
  width: 125px;
  height: 175px;
  background-color: var(--secon);
  mix-blend-mode: multiply;
}

.rect:nth-child(1){
  top: 100px;
  left: 50px;
  position: relative;
}
