body {
  font-family: "Poppins", sans-serif;  
  margin: 0;
  padding: 0;
  background-color: black;
  cursor: url('https://cur.cursors-4u.net/others/oth-6/oth652.cur'), auto !important;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  overflow: hidden; 
}

h1 {
  margin-bottom: 20px;
  font-size: 6vw;  
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gift-box {
  position: absolute;
  width: 20vw;
  height: 20vw;
  max-width: 100px;
  max-height: 100px;
  background-image: url('gift.png');
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.1s ease, top 0.1s ease, left 0.1s ease;
}

.gif {
    width: 200px;
    height: auto; 
    position: fixed; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%);
    
}

#message {
  background: #121FCF;
  background: linear-gradient(to right, #121FCF 0%, #CF1512 100%);
  position: fixed;  
  top: 80px;        
  left: 50%;       
  transform: translateX(-50%);   
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  font-size: 4vw; 
}


@keyframes fadeInOut {
  0% { opacity: 0; transform: scale(0.5); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 1; transform: scale(1); }
}


@media (max-width: 600px) {
  .gift-box {
    width: 30vw;
    height: 30vw;
    max-width: 80px;
    max-height: 80px;
  }

  h1 {
    font-size: 8vw;
  }
}
