* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    min-height: 100%;
}

body {
    min-height: 100vh;

    /* Repeating background */
    background-color: #0d0d0d;
    background-image: url("/bg.png");
    background-repeat: repeat;

    display: flex;
    justify-content: center;
    align-items: center;
}

/* Not Found image */

.notfound {
    display: block;

    width: 600px;
    max-width: 90%;
    height: auto;
}

/* Mobile */

@media (max-width: 600px) {
    .notfound {
        width: 450px;
        max-width: 90%;
    }
}