@font-face {
    font-family: Minecraft;
    src: url(../fonts/Minecraft-Regular.otf);
}

* {
      image-rendering: pixelated;
}

body {
    background-color: #4a5f46;
    background-image: url(../images/minecraft-bg.jpg);
    background-size: cover;
}

main {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #93010160;
}

.death-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 134px;
}

h1 {
    font-family: minecraft;
    font-size: 65px;
    color: #ffffff;
    text-shadow: 7px 7px 0 #3d3d3d;
    padding: 0;
    margin-bottom: 27px;
    font-weight: normal;
    text-align: center;
}

p {
    text-align: center;
    font-family: minecraft;
    font-size: 31px;
    color: #ffffff;
    text-shadow: 3px 3px 0 #3d3d3d;
    margin-bottom: 50px;
}

span {
    color: #ffff56;
}

button {
    background-color: #2c2c2c;
    background-image: url(../images/mc-button_disabled.png);
    background-size: cover;
    border: none;
    width: 650px;
    height: 65px;
    font-family: minecraft;
    font-size: 30px;
    color: #ffffff;
    text-shadow: 3px 3px 0 #3d3d3d;
    margin-bottom: 12px;
}

button:hover {
    background-image: url(../images/mc-button_hover.png) !important;
}

@media only screen and (max-width: 600px) {
    body {
        background-size: auto;
        background-position: center;
    }

    .death-message {
        margin-top: 54px;
    }

    h1 {
        font-size: 40px;
        text-shadow: 5px 5px 0 #3d3d3d;
    }

    p {
        font-size: 20px;
        text-shadow: 2px 2px 0 #3d3d3d;
    }


    button {
        width: 300px;
        height: 30px;
        font-size: 20px;
        text-shadow: 2px 2px 0 #3d3d3d;
    }
}