/* input(88,50): run-time error CSS1046: Expect comma, found '255'
input(88,58): run-time error CSS1046: Expect comma, found '/'
input(89,52): run-time error CSS1034: Expected closing parenthesis, found '/'
input(89,52): run-time error CSS1042: Expected function, found '/'
input(89,57): run-time error CSS1062: Expected semicolon or closing curly-brace, found ')' */
body, html {
    height: 100%
}

.bgimg {
    /* Background image */
    background-image: url('/img/forest.jpg?v=fzP0oip_vlQIw1KRuaBIIefPw4M');
    /* Full-screen */
    height: 100%;
    /* Center the background image */
    background-position: center;
    /* Scale and zoom in the image */
    background-size: cover;
    /* Add position: relative to enable absolutely positioned elements inside the image (place text) */
    position: relative;
    /* Add a white text color to all elements inside the .bgimg container */
    color: white;
    /* Add a font */
    font-family: "Courier New", Courier, monospace;
    /* Set the font-size to 25 pixels */
    font-size: 25px;
}

/* Position text in the top-left corner */
.topleft {
    position: absolute;
    top: 0;
    left: 16px;
}

/* Position text in the bottom-left corner */
.bottomleft {
    position: absolute;
    bottom: 0;
    left: 16px;
}

/* Position text in the middle */
.middle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

/* Style the <hr> element */
hr {
    margin: auto;
    width: 40%;
}

.notfound-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url(../img/forest.jpg?v=fzP0oip_vlQIw1KRuaBIIefPw4M);
    background-size: cover;
}

.notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.notfound {
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding: 30px;
    line-height: 1.4;
}
.notfound:after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 100%;
    height: 600px;
    background-color: rgba(255, 255, 255, 0.7);
    -webkit-box-shadow: 0px 0px 0px 30px rgb(255 255 255 / 70%) inset;
    box-shadow: 0px 0px 0px 30px rgb(255, 255, 255 / 70%) inset;
    z-index: -1;
}

.notfound .notfound-404 {
    position: relative;
    height: 200px;
}

.notfound-social {
    margin-bottom: 15px;
}

.notfound h2 {
    font-family: 'Muli', sans-serif;
    font-size: 26px;
    font-weight: 400;
    text-transform: uppercase;
    color: #222225;
    margin-top: 26px;
    margin-bottom: 20px;
}

.notfound a {
    font-family: 'Muli', sans-serif;
    display: inline-block;
    font-weight: 400;
    text-decoration: none;
    background-color: transparent;
    color: #222225;
    text-transform: uppercase;
    font-size: 14px;
}

.notfound-social > a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 14px;
    color: #fff;
    background-color: #222225;
    margin: 3px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}


