* {
    margin: 0;
    padding: 0;
}
body {
    background-image: url('/pics/backtest2.jpg');
    background-size: cover;
}
.container {
    padding-top: 60px;
    height: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
}
.container-left {
    margin-top: 20%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.container-left img {
    margin-left: 40px;
}
.container-left button {
    margin-left: 96px;
    border: 5px solid black;
    color: black;
    background-color: transparent;
    font-weight: bold;
    border-radius: 20px;
}
.container-right {
    margin-right: 20px;
}
.container button {
    width: 200px;
    height: 50px;
}
canvas {
    border: 3px solid grey;
    background-size: cover;
    background-color: black;
    /* background-color: #E88686; */
};

#health-bar {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    width: 500px;
    height: 20px;
    padding: 5px;
    background: #ddd;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    position: relative;
  }
  #bar {
    background: #c54;
    width: 100%;
    height: 10px;
    position: relative;
    
    transition: width .5s linear;
  }
  
  .hit {
    background: rgba(255,255,255,0.6);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 0px;
    
    transition: width .5s linear;
  }

#pop-up {
    position: absolute;
     background-color: white;
     width: 500px;
     height: 400px;
     left: 30%;
     top: 88px;
     background-image: url('https://media.giphy.com/media/j6ZlX8ghxNFRknObVk/giphy.gif');
     background-size: cover;
     box-shadow: 2px #6c757d;
     z-index: 1;
}

.title {
    position: absolute;
    margin-top: 69px;
    font-size: 70px;
    font-family: 'Henny Penny', cursive;
    z-index: 0.5;
}