* {
  box-sizing: border-box;
}


.stamp-container {
  position: absolute;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 20rem; 
  margin-left: 80%; 
}

.stamp-box {
  width: 100px;
  height: 112px;
  position: relative;
}

.stamp {
  width: 100%;
  height: 100%;
  position: absolute;
}

.stack-top {
  z-index: 9;
}

.stamp-movil {
  display: none;
}

@media (max-width: 1000px) {
  .stamp-container {
      display: none;
  }

  .stamp-movil {
      display: flex;
      justify-content: center;
  }
}