html {
      background-color: whitesmoke;
      background-image: url('./images/background.webp');
      background-size: cover;
      background-repeat: no-repeat;
      overflow: hidden;
      font-family: Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
      color: whitesmoke;
      user-select: none;
}

.screenKeeper {
      top: 0px;
      left: 0px;
      width: 1920px;
      height: 1080px;
      transform-origin: 0% 0%;
}

.position {
      position: absolute;
}

.inventory {
      height: 162px;
      width: 100%;
      top: -108px;
      left: 0;
      display: flex;
      justify-content: center;
      gap: 96px;
      z-index: 10;
      background-color: transparent;
      background-image: url(/images/inventoryBackground.webp);
      background-size: 100% 100%;
      opacity: 50%;
}

@font-face {
      font-family: 'Passion One';
      font-style: normal;
      font-weight: 700;
      font-display: swap;
      src: url(https://fonts.gstatic.com/s/passionone/v18/Pby6FmL8HhTPqbjUzux3JEMq007vyJc.woff2) format('woff2');
      unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.inventoryItem {
      height: 80%;
      display: flex;
      justify-content: center;
      margin-top: 11px;
      margin-bottom: auto;
      filter: drop-shadow(-1px 1px 1px rgba(50, 50, 0, 0.5));
}

.dragItem {
      position: absolute !important;
      z-index: 20;
}

.center {
      display: flex;
      width: 100%;
      height: 100%;
      margin: auto;
      justify-content: center;
}

.imgcontainer {
      /* position: absolute; */
      /*    filter: drop-shadow(-1px 6px 3px rgba(50, 50, 0, 0.5));*/
}

.imgcontainer img {
      max-height: 100%;
      max-width: 100%;
      pointer-events: none;
}

.paintings {
      display: grid;
      grid-template-columns: auto auto auto auto;
      grid-column-gap: 96px;
      grid-row-gap: 58px;
      justify-items: center;
}

.paintings img {
      height: 864px;
}

.button {
      border: none;
      padding: 0px;
}

.inputHole {
      position: initial;
      background:
            url(./images/pegHolder.webp),
            radial-gradient(circle at center, #333, #000000 50%, transparent 50%);
      background-size: 100% 100%;
      border-radius: 50%;
      height: 65px;
      width: 65px;
}

.circle:hover {
      background-color: none;
}

.peg {
      visibility: hidden;
      position: absolute;
      left: calc(50% - 43px);
      height: 86px;
      width: 86px;
      transform-origin: 50% 95%;
      z-index: 3;
}

.peg img {
      height: 86px;
}

.spotlight {
      height: 108px;
      width: 108px;
      border-radius: 50%;
      position: absolute;
      background-color: white;
      opacity: 0.6;
      z-index: 3;
      filter: blur(5px);
}

.spotlight:after {
      position: absolute;
      width: 100%;
      height: 100%;
      content: '';
      border-radius: 100%;
      background:
            radial-gradient(ellipse at center, rgba(255, 255, 100, 0.3) 0%, rgba(0, 0, 0, 0) 100%),
            radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 10%, rgba(255, 255, 255, 0) 100%);
}

.button2 {
      background-color: whitesmoke;
      border: none;
      border-radius: 4px;
      color: #747474;
      font-weight: bold;
      padding: 4px 8px;
      text-align: center;
      font-size: 20px;
      font-family: Palatino, Palatino Linotype, Palatino LT STD, Book Antiqua, Georgia, serif;
      margin: 5px 0px;
      opacity: 0.9;
      transition: 0.3s;
      display: inline-block;
      text-decoration: none;
      cursor: pointer;
}

.button2:hover {
      opacity: 1
}

.button2:active {
      background-color: white;
}