html, body {
  user-select: none;
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden; 
  background-color: #ffffff;
  position: relative;
  user-select: text;
}
#startImage {
  position: absolute;
  bottom: 10px;
  left: 50%;
  width: auto;
  height: auto;
  max-width: 70px;
  max-height: 70px;
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(0deg) ; 
  transform-origin: center;
  transition: transform 2s linear; 
  cursor: pointer;
  z-index: 400;
  opacity: 1;
}

.blast-img {
  position: absolute;
  pointer-events: none;
  max-width: 50vw;
  max-height: 50vh;
  transform: translate(-50%, -50%);
  object-fit: contain;
  opacity: 0;
  z-index: 500;
}
img {
  -webkit-user-drag: none;
  pointer-events: auto;
}

#trackname {
    box-sizing: border-box;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    color: #000;
    text-align: center !important;
    font-size: 16px;

}
#art {
  width: 90%;
  height: 100hw;
  object-fit: contain;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: default; 
  z-index: 300;   
  opacity: 1;
  pointer-events: none; 
  padding:40px;
}
#startImage, .blast-img, #art {
  -webkit-user-drag: none;
  user-select: none !important;
}

@media (max-width: 800px) {
  #art {
    opacity: 0; 
  }
#startImage {
  position: fixed;
  top: 50%;
  left: 50%;
  width: auto;
  height: auto;
  max-width: min(40%, 350px);
  max-height: min(40%, 350px);
  object-fit: contain;
  transform: translate(-50%, -50%) rotate(0deg) ; 
  transform-origin: center;
  transition: transform 2s linear; 
  cursor: pointer;
  z-index: 1000;
  opacity: 1;
}
html, body {
  background-color: #f9f4ef;
}
