#groshi-old {
  background-image: url('/static/groshi/oldbg.png');
  background-position-y: 50%;
  background-size: cover;
}

#groshi-new {
  background-image: url('/static/groshi/newbg.png');
  background-position-y: 50%;
  background-size: cover;
}

#stickysidebar {
  position: -webkit-sticky;
	position: sticky;
	top: 80px;
}

.top-link {
  transition: all .25s ease-in-out;
  position: fixed;
  bottom: 0;
  right: 0;
  display: inline-flex;
  
  cursor: pointer;
  align-items: center;
  justify-content: center;
  margin: 0 3em 3em 0;
  border-radius: 20%;
  padding: .2em;
  width: 60px;
  height: 60px;
  background-color: #7d7d7d;
}

.top-link.show {
  visibility: visible;
  opacity: 0.3;
}

.top-link.hide {
  visibility: hidden;
  opacity: 0;
}

.top-link svg {
  fill: rgb(234, 234, 234);
  width: 24px;
  height: 12px;
}

.top-link:hover {
  background-color: #cacaca;
}

.top-link:hover svg {
  fill: #000000;
}

span.avoidwrap { display:inline-block; }


.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  grid-auto-rows: minmax(20px, auto);
  justify-content: center;	
  gap: 16px;
}

.project-grid > * {
  width: 200px;
  float: left;  
  margin: 16px;
}

@supports (display: grid) {
  .project-grid > * {
    margin: 0 auto;
  }
}
