body {
    text-align: center;
}


.container {
    width: 250px;
    /* margin-left: 250px; */
    position: absolute;
    top: 70px;
    left: 32%;
    color: #000;
    font-weight: bold;
    font-size: 1.5em;
}


.headers {
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
}


div.stats {
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    align-items: center;
}

#lives{
    display: flex;
    flex-flow: row;
    justify-content: space-around;
    margin: 0;
    padding: 0;
}


.live {
    width: 20px;
    height: 40px;
    margin: 0;
    padding: 0;
}


.modal-container {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    background-color: #00000060;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}


.modal {
    width: 500px;
    height: auto;
    background-color: rgb(236, 227, 227);
    margin: 15% auto 0;
    font-size: 1.3em;
    padding: 1em;
    box-sizing: border-box;
}


.btn {
    width: 10em;
    height: 2em;
    font-size: 1.2em;
    background-color: forestgreen;
    border: 0;
    border-radius: 10px;
    color: #fff;
    box-shadow: 2px 4px 8px #999;
}


.btn:hover {
    background-color: rgb(6, 88, 6);
}


.hide {
    display: none;
}