@import url('https://fonts.googleapis.com/css2?family=Changa:wght@400;700&family=Mulish:wght@300;400;700&display=swap');

h1 {
    text-align: center;
    margin: 20px;
    font-family: 'Changa';
    font-size: 36px;
}

p {
    text-align: center;
    margin: 20px;
    font-family: 'Mulish';
    font-weight: 300;
    font-size: 18px;
}

.container {
    display: grid;
    grid-template-columns: repeat(17, 40px);
    grid-template-rows: repeat(13, 40px);
    justify-content: center;
    margin: 20px;
    padding: 20px;
    background-color: #BABABA;
    border: 4px dashed #0000BA;
}

.cell {
    width: 40px;
    height: 40px;
}

.empty {
    background-color: #ffffff;
    border: 1px solid black;
}

.unbreakable {
    background-color: black;
    border: 1px solid white;
}

.breakable {
    background-color: grey;
    border: 1px solid black;
}

.player {
    background-color: #00BA00;
    border: 1px solid black;
}

.enemy {
    background-color: red;
    border: 1px solid black;
}

.bomb {
    background-color: darkorange;
    border: 1px solid black;
}

.gameover-screen {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.gameover-screen h1 {
    margin: 0 0 0 0;
    font-family: 'Changa ExtraBold';
    font-size: 48px;
    color: #BA0000;
}

.gameover-screen p {
    margin: 0;
    font-family: 'Mulish';
    font-weight: 300;
    font-size: 24px;
    color: #000;
    max-width: 400px;
}

.win-screen {
    grid-column: 1 / -1;
    grid-row: 1 / -1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    height: 100%;
}

.win-screen h1 {
    font-family: 'Changa ExtraBold';
    font-size: 48px;
    color: #20BA20;
}

.win-screen p {
    font-family: 'Mulish';
    font-weight: 300;
    font-size: 24px;
    color: #000;
    max-width: 400px;
}

.statusanzeige {
    text-align: center;
    margin: 10px;
    font-family: 'Mulish';
    font-weight: 700;
    font-size: 18px;
}

.explosion {
    background-color: magenta;
    border: 1px solid black;
}