@font-face {
  font-family: "lesspixelfont";
  src: url('fonts/lesspixelfont.woff') format('woff');
  font-display: swap;
}
html, body {
  overflow: hidden;
  margin: 0;
  height: 100%;
}
body {
  color: black;
  font-family: "lesspixelfont", ms pgothic, ms ui gothic, simsun, arial, sans-serif;
  -webkit-font-smoothing: none;
  font-smooth: never;
  font-size: 1.5rem;
  background-image: url('images/indexbg.png');
  image-rendering: optimizeQuality;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.button-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}
.pinned-img {
  position: absolute;
  z-index: 2;
}
.draggable {
  width: 200px;
  display: block;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
}
.pin {
  width: 80px;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  cursor: grab;
  z-index: 3;
  user-select: none;
  pointer-events: auto;
  -webkit-user-drag: none;
}
.pin:active {
  cursor: grabbing;
}
#home-btn {
  position: relative;
  z-index: 1;
}
.ddlc-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.50);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.ddlc-overlay.visible {
  display: flex;
}
.ddlc-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 500px;
}
.ddlc-textbox {
  background: white; border: 1px 
  solid #333; border-radius: 8px; 
  padding: 16px 24px; width: 100%; 
  box-sizing: border-box;
  border-style:  solid;
  font-family: "longpixelfont", sans-serif;
  font-size: 1.1rem;
}
#ddlcCloseBtn {
  margin-top: 16px;
  padding: 6px 20px;
  cursor: pointer;
}