body {
  font-family: "Lobster", cursive;
  background-color: #ffdde1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
  background: url("images/image.gif") repeat;
  font-size: 30px;
  color: rgb(255, 0, 174);
  overflow: hidden;
  padding: 20px;
  box-sizing: border-box;
}

.hh {
  -webkit-text-stroke: 2px #71004f;
  font-weight: 900;
  margin: 10px 0;
}

.pp {
  -webkit-text-stroke: 2px #71004f;
  font-size: 40px;
  font-style: oblique;
  font-weight: 800;
  margin: 15px 0;
}

.container {
  -width: 100%;
  max-width: auto;
  max-height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  background-color: transparent;
  border-radius: 10px;
  -box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  padding: 20px;
  box-sizing: border-box;
}

.image {
  height: auto;
  max-height: 250px;
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

.buttons {
  display: flex;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  z-index: 99;
}

.buttons button {
  background-color: #ff4d79;
  color: #fff;
  padding: 15px 35px;
  border: none;
  border-radius: 10px;
  font-size: 24px;
  cursor: pointer;
  font-family: "Lobster", cursive;
  min-width: 120px;
  flex: 1;
  max-width: 45%;
  z-index: 99;
  position: relative;
  top: 
  
}

.buttons button:hover {
  background-color: #7c1f37;
}

#no-button {
  cursor: pointer;
  z-index: 100;
}

.hidden-message {
  display: none;
  margin-top: 20px;
}

.video-element {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 700px;
  max-height: 80vh;
  z-index: 98;
}

/* Mobile-specific styles */
@media (max-width: 768px) {
  body {
    font-size: 24px;
    padding: 10px;
  }
  
  .pp {
    font-size: 32px;
  }
  
  .buttons button {
    padding: 12px 25px;
    font-size: 20px;
    min-width: 100px;
  }
  
  .image {
    max-height: 200px;
  }
}

@media (max-width: 480px) {
  .pp {
    font-size: 28px;
  }
  
  .buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .buttons button {
    max-width: 80%;
    width: 100%;
  }
}