.mosaic-container {
  width: 100%;
  height: 100%;
  max-height: 536px;
  aspect-ratio: 647/536;
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 0;
  perspective: 1500px;

  .mosaic-item {
    position: relative;
    transform-style: preserve-3d;
  }

  .front-face,
  .back-face {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    transform-style: preserve-3d;
  }

  .back-face {
    transform: rotateY(180deg);
  }

  .front-face img,
  .back-face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Color blocks */
  .color-block {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }

  .mint {
    background-color: #49b769;
  }

  .yellow {
    background-color: #ffcd03;
  }

  .blue {
    background-color: #00a7d4;
  }

  /* Circle shapes */
  .circle {
    border-radius: 50%;
    position: absolute;
    z-index: 1;
  }

  .yellow-circle {
    background-color: #ffcd03;
    width: 100px;
    height: 100px;
  }

  .mint-circle {
    background-color: #92e3aa;
    width: 100px;
    height: 100px;
  }

  .blue-circle {
    background-color: #00a7d4;
    width: 100px;
    height: 100px;
  }
}
