@font-face {
    font-family: "Minecraft";
    src: url("./MinecraftTen.ttf");
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Minecraft', sans-serif;
    color: #fff;
    background-color: white;
    text-shadow: 2px 2px #090909;
    display: grid;
    place-items: center;
    height: 100vh;
    line-height: 1.5;
}

.game {
    max-width: 440px;
    display: grid;
    align-items: center;
    gap: 50px;
    padding: 75px 25px;
    background: url("mario.png");
    background-size: cover;
    border-radius: 20px; 
    text-align: center;
}

.game-health {
    position: relative;
    width: 200px;
    height: 25px;
    border: 2px solid #fff;
    margin-left: auto;
}

.game-health-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10px;
}

.game-health-bar {
    width: 100%;
    height: 100%;
    background-color: green;
}

.game-title {
    font-size: 24px;
}

.game-number {
    display: grid;
    place-items: center;
    width: 75px;
    height: 75px;
    margin: 20px auto;
    background: url("lucky-block.png");
    background-size: cover;
}

.feedback {
    font-size: 34px;
}

.game footer {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

input, button {
    background: none;
    font: inherit;
    color: inherit;
    border: none;
}

.guess-button {
    grid-column: 1/-1;
    padding: 5px;
    border: 2px solid #fff;
}

.game-button {
    padding: 10px 15px;
    box-shadow: 5px 5px #090909;
    cursor: pointer;
}

.play-button {
    background-color: green;
}

.reset-button {
    background-color: blue;
}
