body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

canvas{
    margin-top: 10px;
}

.info {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    width: 450px;
    font-size: 18px;
}

/*.game-over {
    display: none;
    color: red;
    font-size: 24px;
    margin-top: 10px;
}*/

.digital-score {
    font-family: monospace;
    font-size: 24px;
    display: inline-block;
    height: 40px;
    width: 300px;
    text-align: center;
    background-color: black;
    color: limegreen;
    padding: 10px 10px 0px 10px;
    border-radius: 5px;
    margin: 0 0 0 5px;
}



.digital-mine{
    font-family: monospace;
    font-size: 24px;
    display: inline-block;
    height: 40px;
    width: 300px;
    text-align: center;
    background-color: black;
    color: limegreen;
    padding: 10px 10px 0px 10px;
    border-radius: 5px;
    margin: 0 0 0 15px;
}


.game-container {
    background-color: #999;
    padding: 10px;
    border: 2px solid #555;
    border-radius: 5px;
    width: 511px;
}

.header {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-container {
    background-color: #999;
    padding: 10px;
    border: 2px solid #555;
    border-radius: 5px;
    width: 511px;
    align-items: center;
    display: flex;
    justify-content: center;
    padding: 10px 20px 20px 0px;
    margin-top: 10px;
}


.menu-screen{
    position: absolute;
    display: none;
    flex-direction: column;
    align-items: center;
    z-index: 1;
}

.victory{
    display: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3rem;
    color: goldenrod;
}

.game-over{
    display: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 3rem;
    color: red;
}

.final-score{
    font-weight: 500;
    font-size: 1.5rem;
}

.btn-play{
    border: none;
    border-radius: 100px;
    padding: 18px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-top: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}



