@font-face {
    font-family: 'MortalKombatTitle';
    src: url(fonts/MKtitle.ttf) format('truetype');
}
@font-face {
    font-family: 'MortalKombatOne';
    src: url(fonts/mortalkombat1.ttf) format('truetype');
}

body {
    background-image: url(images/thepit.jpeg);
    background-size: cover;
    height: 100vh;
    width: 100vw;
    background-repeat: no-repeat;
    overflow: hidden;
    background-attachment: fixed;
    background-position: center center;
}

h1 {
    box-sizing: border-box;
    font-family: 'MortalKombatTitle', sans-serif;
    text-align: center;
    font-size: 50px;
    margin: 0 200px 0 200px;
    border: solid gray 10px;
    background-color: lightgray;
    padding: 10px 70px 10px 70px;
    border-bottom-right-radius: 80px;
    border-bottom-left-radius: 80px;
    border-top-right-radius: 80px;
    border-top-left-radius: 80px;
}

.game-ctr {
    font-family: 'MortalKombatOne', sans-serif;
    text-align: center;
}

h2 {
    font-size: 40px;
    text-align: center;
    color: yellow;
    padding-top: 5px;
    margin-top: 0px;
    margin-bottom: 20px;
}

h3 {
    font-size: 40px;
    text-align: center;
    color: red;
    margin: 10px;
}

.healthbar {
    font-size: 20px;
    color: yellow;
}

#game-board{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

img {
    height: calc(12% - 5px);
    width: calc(10.33% - 5px);
    margin: 5px;
}

#init-button {
    font-size: 30px;
    bottom: 0px;
    color: #00FF40;
    background-color: black;
    font-family: 'MortalKombatOne', sans-serif;
}