body {
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    padding: 0;
    margin: 0;
    font-family: Arial;
}

.balloon {
    width: 100px;
    height: 200px;
    position: absolute;
    top: 80vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.balloon-red {
    background-image: url(../img/balloon-red.png);
}

.balloon-yellow {
    background-image: url(../img/balloon-yellow.png);
}

.balloon-blue {
    background-image: url(../img/balloon-blue.png);
}

.balloon-violet {
    background-image: url(../img/balloon-violet.png);
}

.balloon-green {
    background-image: url(../img/balloon-green.png);
}

.total-shadow {
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    /*    display: flex;*/
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    position: relative;
}

.total-block {
    background: #fff;
    padding: 10px 100px 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    width: 20%;
    height: 70%;
}

.win img {
    width: 35%;
    height: auto;
}

.lose {
    display: none;
}

.win {
    display: none;
}

.score-block {
    background: #efefef;
    width: 300px;
    height: 80px;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px 20px 0 0;
    position: absolute;
    bottom: 0;
    left: calc(50% - 150px);
}
