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

.container {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-container {
  position: relative;
  width: 500px;
  height: 500px;
  overflow: hidden;
}

.img {
  position: absolute;
  width: 100%;
  height: 100%;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.img-container .img-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  mix-blend-mode: screen;
  background-color: #fd5530;
}

.img-blocks {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
  justify-content: space-between;
}

.block {
  width: 50px;
  height: 50px;
  opacity: 0;
  mix-blend-mode: hard-light;
  background: #fff989;
  transition: opacity 0.3s ease-in;
}

.block.active {
  opacity: 0.75;
}
