
#game{
   max-width: 100vw !important;
    height: 70vh;
    overflow: hidden;
    background: linear-gradient(#87CEEB, #dff7ff);
    min-width: 85vw;
}

#ground{
    position:absolute;
    bottom:0;
    width:100%;
    height:120px;
    background:#4CAF50;
    left:0;
}
.bottom-bar{
    left:0;
}
#player{
    position:absolute;
    left:80px;
    bottom:180px;
}

#bow{
    position:relative;
    font-size:80px;
    transform-origin:center center;
    line-height: 1;
}
#bowicon {
    font-size:80px;
    transform: rotate(2.35rad);
    transform-origin: center center;
    line-height: 1;
}


#arrow{
    position:absolute;
    left:40px;      /* Start near the bow */
    top:32px;
    font-size:22px;
    color: red;
    transform-origin:center center;
    display: none;
   
}
#target{
    position:absolute;
    right:80px;
    top:200px;
    font-size:70px;
    width:55px;
    height: 80px;
}

#hud{
    font-size: 20px;
    font-weight: bold;
    color: #222;
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
}

#message{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    font-size:50px;
    color:white;
    text-shadow:2px 2px 8px black;
    display:none;
}

#controls{
    position:absolute;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
}

button{
    padding:12px 30px;
    margin:5px;
    font-size:18px;
    border:none;
    border-radius:10px;
    cursor:pointer;
    background:#ff9800;
    color:white;
}

button:hover{
    background:#f57c00;
}