@font-face {
    font-family: cim;
    src: url(runewood.regular.ttf);
}

@font-face {
    font-family: szoveg;
    src: url(runewood.regular.ttf);
}

@font-face {
    font-family: szam;
    src: url(moanster.regular.ttf);
}

h1{
    color: #f4f4f4;
    font-family: cim;
    text-align: center;
    text-shadow: 1px 1px 2px red, 0 0 1em yellow, 0 0 0.2em yellow;
    font-size: 60px;
}
body{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-image: url(./img/zombeeeeeee.jpg);
    user-select: none;
    background-size: cover;
}

.hatter{
    position: absolute;
    top: 0;
    left: 0;
    backdrop-filter: blur(2px);
    width: 100%;
    height: 100%;
}

#gameCanvas {
    border: 2px solid black;
    background-color: #DEB887; /* Sivatagi háttérszín */
    cursor: crosshair ;
}

#hud {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-around;
    width: 500px;
    background-color: black;
    color: aliceblue;
    border-radius: 20px;
    font-family: szam,szoveg ;
    font-size: 20px;
    text-shadow: #f4f4f4 1px;
}

#gameOverModal {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: white;
    padding: 20px;
    border: 2px solid black;
    display: none;
    z-index: 10;
    font-family:  szam ;
}
main{
    display: flex;
    flex-direction: column;
    z-index: 100;
}

button{
    font-family: cim;
    margin-left: 25%;
    flex-direction: column;
}

#start{
font-size: 40px;
align-items: center;
display: flex;
margin-left: 39%;
}