body {
  background-color: #000;
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100dvh;
}

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

.gift {
  height: 300px;
}

.text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  color: #fff;
  font-size: 24px;
  text-align: center;
  opacity: 0;
  transition: all 3s ease;
  width: 100%;
}

.text.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.music {
  display: none;
}

.emir-pic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 100px;
  height: auto;
  opacity: 0;
  transition: all 3s ease;
}

.text.after-emir {
  top: 35%;
}

.emir-pic.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
