:root {
  --accent:#a0522d;
}

html, body {
  color:white;
  scroll-behavior:smooth;
  background-color:black;
}

img {
  width:100%;
}

.masonry {
  column-gap:5px;
  column-count:5;
}

.masonry .mItem {
  width:100%;
	margin-bottom:2px;
  display:inline-block;
}

.itemLink {
  transition:.3s linear;
}

.itemLink:hover {
  transition:.2s linear;
  filter:grayscale(100%);
}

::selection {
  color:black;
  background-color:#a0522d;
}

::-webkit-scrollbar {
  color:#a0522d;
}

::-webkit-scrollbar-track {
  background:black;
}

::-webkit-scrollbar-thumb {
  background:#a0522d;
}

::-webkit-scrollbar-thumb:hover {
  background:black;
  border:1px solid white;
}

::-webkit-resizer {
  background:#a0522d;
}

@media (max-width:1100px) {
  .masonry {
    column-count:4;
  }
}

@media (max-width:900px) {
  .masonry {
    column-count:3;
  }
}

@media (max-width:700px) {
  .masonry {
    column-count:2;
  }
}

@media (max-width:500px) {
  .masonry {
    column-count:1;
  }
}