.ticket-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  height: 100vh;
}

.image-container {
  position: relative;
  max-width: 450px;
  width: 100%;
}

.ticket-image {
  width: 100%;
  display: block;
}

.qrCode {
  position: absolute;
  top: 60%;
  right: 32%;
  width: 35%;
  text-align: center;
}

.name {
  position: absolute;
  top: 40%;
  right: 32%;
  width: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
}

.ticket {
  position: absolute;
  top: 85%;
  right: 42%;
  color: #fff;
  font-weight: 700;
  font-size: 30px;
  text-align: center;
}

@media (max-width: 425px) {
  .ticket {
    font-size: 20px;
    right: 46%;
  }
}

