* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    height: 100vh;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    display: grid;
    grid-template-columns: repeat(32, 1fr);
    grid-template-rows: repeat(32,1fr);
}

img {
    width: 100%;
    height: 100%;
    transition: all  cubic-bezier(0.075, 0.82, 0.165, 1) 1s;
    /* object-fit: contain;  */
    cursor: pointer;
    -webkit-user-drag: none;
  /* filter: drop-shadow(5px 5px 5px #222); */
}


img:hover {
    scale: 1.1;
}

@keyframes popup {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  60% {
    opacity: 1;
    transform: scale(1.1) translateY(0);
  }
  100% {
    transform: scale(1);
  }
}

.popup {
  animation: popup 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.lock {
  filter: blur(4px);
  opacity: 0.5;

  pointer-events: none;
}