*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body
{
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    overflow: hidden;
    /* background-size: 30px 30px; */
    background-color: #000000;

    /* background-image:
    linear-gradient(to right, #1d1d1d 1px, transparent 10px),
    linear-gradient(to bottom, #1d1d1d 1px, transparent 10px);
    margin: 0; */
}
.score-element {
    user-select: none;
    position: absolute;
    color: whitesmoke;
    display: inline-block;
    place-items: center;
    padding-top: 5px;
    padding-left: 10px;
}
.modal-element {
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);

}
.big-score-container {
    border-radius: 10px;
    padding: 30px;
    background-color: rgb(70, 70, 70);
    width: 500px;

}
.big-score-element{
    color: whitesmoke;
    user-select: none;
    text-shadow: 1px 1px 2px rgb(0, 0, 0);
    display: grid;
    place-items: center;
    padding-bottom: 5px;
}
.points-element {
    color: whitesmoke;
    user-select: none;
    display: grid;
    place-items: center;
    padding-bottom: 5px;

}
.start-game-button {
    user-select: none;
    background-color: rgb(54, 151, 255);

    font-weight: 600;
    color: white;
    display: inline-block;
    place-items: center;
    border-radius: 10px;
    width: 400px;
    height: 40px;
    border-color: rgb(54, 151, 255);
}

.start-game-button:hover {
    background-color: rgb(78, 164, 255);
}
/* h1{
color: rgb(206, 206, 206);
font-family: Verdana, Geneva, Tahoma, sans-serif;
} */