/* Universal box-sizing */
* {
  box-sizing: border-box;
}

.someclass {
  color: red;
}

/* Reset body margins and padding */
body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  display:block;
  margin: 0 auto;
  max-width: 360px;
  max-height: 640px;
  position: relative;
  overflow:hidden;
  margin-top: 10px;
  box-sizing: border-box;
  
}

img{
  max-width: 100%;
  position: relative;
}

.game{
  background: url(img/bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  min-height: 640px;
  width: 100%;
  position: relative;
  padding: 20px 0;
  border-radius: 25px;
  overflow: hidden;
}

/* Style and center the container */
.container {
  max-width: 800px;
  margin: auto;
  padding: 20px 10px ;
  text-align: center;
}

/* Style the audio player */
#audio {
  width: 100%;
}

.bendera{
  position: absolute;
  width: 19%;
  top: 16px;
  left: 5%;
}

.masthead{
  width: 95%;
  margin: 0 auto;
  top: 100px;
  position: relative;
  transition: 1.5s;
  transition-timing-function: ease;
  /* display: none; */
}


/* Button styles */
#play-pause-button {
  display: block;
  /* margin: 20px auto;
  padding: 30px;
  font-size: 3rem;
  background-color: #007BFF;
  color: white; */
  border: none;
  border-radius: 5px;
  background: url(img/start.png) no-repeat;
  background-size: 300px;
  width: 300px;
  height: 56px;
  background-color: unset;
  position: absolute;
  left: 0;
  right: 0;
  margin-left: auto ;
  margin-right: auto;
  bottom: 150px;
}

/* Lyrics and current time styles */
#lyrics {
  font-family: 'Sigmar', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 24px; /* Increased font size */
  text-align: center;
  color: #1E942A;
  text-shadow: 4px -2px 0px white, -2px 2px 0px white,  -2px -2px 0px white, 4px 2px 0px white;
  margin-top: 26px;
  line-height: 26px;
  /* -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: rgb(255, 255, 255); */
   
  /* padding: 10px; */
}

.character{
  width: 74%;
  display: block;
  position: absolute;
  top: 25%;
  transition: 1.5s;
  transition-timing-function: ease;
  left: -270px;
}


#current-time {
  font-size: 18px;
  font-family: 'Sigmar', sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
  padding: 5px 15px;
  background-color: #D3691A;
  border-radius: 20px;
  color: #fff;
  display: none;
}

.scream{
  right: -20%;
  position: absolute;
  top: 150px;
  z-index: 100000;
  width: 70px;
  transition: 1.5s;
  transition-timing-function: ease;
}
.icecream{
  width: 61px;
  position: absolute;
  display: block;
  margin: 14px auto;
  bottom: 15px;
  right: 5%;
  top: 17.5%;
  height: 295px;
}

.decibelmeter{
  width: 69px;
  position: absolute;
  bottom: -310px;
  background: url(img/meter-green.png) local no-repeat;
  background-size: 60px;
  z-index: 0;
  background-position: center;
  background-position-y: bottom;
  /* border-top: solid 2px #444; */
  /* background-position-x: 63px;
  background-position-y: 224px; */
  /* bottom: 34%; */
  /* top: 14px; */
  right: 0%;
  /* background-color: #24110B; */
  /* z-index: -1; */
}
.winning{
  position: absolute;
  transition: 1.5s;
  transition-timing-function: ease;
  font-size: 0px;
  left: 0;
  right: 0;
  top: 40%;
  z-index: 10;
}

.result{
  /* display: none; */
  position: absolute;
  background: url(img/result-bg.png) no-repeat;
  left: 0;
  right: 0;
  width: 365px;
  text-align: center;
  top: -20px;
  z-index: -1;
  height: 100%;
  background-size: 0;
  background-position: center;
  transition: .3s;
  transition-timing-function: ease;
  color: #9f1117;
}

#result_img{
  position: relative;
  top: 24%;
}

#result_img img{
    display: block;
    width: 55%;
    margin: 0 auto;
    position: relative;
}

.reload_button{
  position: relative;
    z-index: 5000000;
  background-image: url(img/reload.png);
  width: 50px;
  height: 50px;
  background-size: 50px;
  background-color: unset;
  border: unset;
  background-repeat: no-repeat;
}

/* Mobile styles */

@media (max-width: 600px) {
  #play-pause-button {
    padding: 40px; /* Increased padding */
    font-size: 3rem; /* Increased font size */
  }

  #lyrics {
    font-size: 5vw; /* Increased font size */
  }
}
