.pin {
  position: absolute;
  height: 200px;
  cursor: grab;
  user-select: none;
  -webkit-user-drag: none;
  user-drag: none;
  pointer-events: auto;
  filter: drop-shadow(5px 5px 10px #000000);
}

.pin:active {
  cursor: grabbing;
  transform: scale(1.2);
  filter: drop-shadow(5px 5px 20px #000000);
}
	
#pin-container {
	width: 2560px;
	height: 3480px;
	background: url('images/pins/denim-bg-3.jpg') no-repeat top left;
	padding: 0;
	margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  display: flex;
  align-items: center;
  justify-content: center;
}

#board-wrapper {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2560px;
	transform-origin: top left;
}

#spacer {
  width: 100%;
}

html {
	background: url('images/pins/bg.png');
}