body{
    overflow: hidden;
    background-image: url(../img/twitch.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    box-sizing: border-box;
    user-select: none;
    user-zoom: none;
}

#circle {
    position:relative;
    display:block;
    float:left;
    border: 3px solid purple;
    border-radius: 50%;
    width:100px;
    height:100px;
    cursor: pointer;
    background-image: url(../img/pepe.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}
#scoreboard {
    color:gold;
    font-size: 40px;
    float:right;
    margin-top: 0;
}
#place {
    border: 1 px solid white;
    width:120vh;
    height:90vh;
    margin: auto;
    margin-top: 4%;
}
#healthbar {
    width:300px;
    height:10px;
    padding:5px;
    border: 1px solid black;
}
#bar {
    background: red;
    width:300px;
    height:10px;
}

#play {
    border: 3px solid black;
    position: fixed;
    cursor: pointer;
    max-width: 200px;
    width: 100%;
    text-align: center;
    left: 50%;
    right: 50%;
    top: 30%;
    margin-left: -100px;
    margin-right: -100px;
    color: black;
    font-size: 20pt;
  }

#dance {
    position:absolute;
    top:50%;
    left:0px;
    height:400px;
    width:400px;
    display: none;
}

#dance2 {
    position:absolute;
    top:50%;
    right:0px;
    width:400px;
    height:400px;
    display:none;
}

#result {
    display:none;
    position:absolute;
    top:30%;
    left:50%;
    width:500px;
    height:200px;
    border:1px solid black;
    background-color:white;
}

#points {
    clear: both;
}