* {
    box-sizing: border-box;
}

body {
    margin:0;
    overflow: hidden;
    background-image: url(Artboard\ 1.jpg);
}

.container {
    width: 100%; /* or any specific width */
    height: 100vh; /* or any specific height */
    position: relative;
    overflow: hidden; /* Ensures the image does not overflow the container */
  }

  .container img {
    width: 100%; /* Makes the image responsive */
    height: 100%; /* Ensures the image covers the entire container */
    object-fit: cover; /* Ensures the image scales while maintaining its aspect ratio */
    position: absolute;
    top: 0;
    left: 0;
  }


  .bag {
    position: absolute;
    top: 300px;
    left: -100px;
  }

  .bag img {
    width: 100%; /* Makes image responsive */
    cursor: pointer; /* Makes the image clickable */
  }

  .gun {
    position: absolute;
    top: -50px;
    left: 75px;
  }

  .gun img {
    width: 100%; /* Makes image responsive */
    cursor: pointer; /* Makes the image clickable */
  }

  .joint {
    position: absolute;
    top: 400px;
    left: 550px;
  }

  .joint img {
    width: 100%; /* Makes image responsive */
    cursor: pointer; /* Makes the image clickable */
  }


  .monster {
    position: absolute;
    top: -50px;
    left: 1100px;
  }

  .knife {
    position: absolute;
    top: 0px;
    left: 450px;
  }


  #text-box, #text-box2, #text-box3  {
    position: absolute;
    width: 200px;
    padding: 20px;
    background-color: rgb(255, 251, 0);
    border-radius: 5px;
    text-align: center;
    z-index: 100;  /* Ensures the text box is above other elements */
  }
  
  #text-box {
    top: 350px;
    left: 75px;  /* Adjust position for the bag text box */
  }
  
  #text-box2 {
    top: 200px;
    left: 75px;  /* Adjust position for the gun text box */
  }
  
  #text-box3 {
    top: 650px;
    left: 575px;
    width: 150px;
  }
  


