* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    padding: 0;
    margin: 0;
    background: #881511;
}

#notfound {
    position: relative;
    height: 100vh
}

#notfound .notfound {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.notfound {
    max-width: 680px;
    width: 100%;
    text-align: center;
    line-height: 1.4
}

.notfound .notfound-404 {
    position: relative;
    width: 300px;
    height: auto;
    margin: 0 auto 30px
}

.notfound .notfound-404 h1 {
    margin: 0;
}
.notfound .notfound-404 h1 img{
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
.notfound h2 {
    font-family: cabin, sans-serif;
    font-size: 28px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px

}

.notfound p {
    font-family: cabin, sans-serif;
    font-size: 16px;
    color: #FFFFFF;
    font-weight: 400
}

.notfound a.btn {
    font-family: cabin, sans-serif;
    display: inline-block;
    padding: 10px 25px;
    background-color: #8f8f8f;
    border: none;
    border-radius: 40px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    -webkit-transition: .2s all;
    transition: .2s all
}

.notfound a.btn:hover {
    background-color: #2c2c2c
}

.notfound a.link {
    font-family: cabin, sans-serif;
    display: inline-block;
    border: none;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
}

.notfound a.link:hover {
    text-decoration: underline;
}