.gift {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 8000;
}

.gift .gift-img {
  width: 60%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.closed {
  margin-bottom: 10px;
}

@media screen and (min-width: 468px) {
  .gift .gift-img {
    width: 60%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
  }
}

@media screen and (min-width: 698px) {
  .gift .gift-img {
    width: 50%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
  }
}

@media screen and (min-width: 1080px) {
  .gift .gift-img {
    width: 30%;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    border-radius: 10px;
  }
}
