* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box
}

body {
    padding: 0;
    margin: 0
}

#notfound {
    position: relative;
    height: 100vh;
    background-color: #d7e2e8;
}

#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: 560px;
    width: 100%;
    padding-left: 160px;
    line-height: 1.1
}

.notfound .notfound-404 {
    position: absolute;
    left: -117px;
    top: -30px;
    z-index: -1;
    width: 300px;
    height: 300px;
    background-size: cover;
}

.notfound h1 {
    font-family: nunito, sans-serif;
    font-size: 65px;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 10px;
    color: #151723;
    text-transform: uppercase
}

.notfound h2 {
    font-family: nunito, sans-serif;
    font-size: 21px;
    font-weight: 400;
    margin: 0;
    text-transform: uppercase;
    color: #151723
}

.notfound p {
    font-family: nunito, sans-serif;
    color: #999fa5;
    font-weight: 400;
    text-align: justify;
    text-justify: inter-word;
}

.notfound a {
    font-family: nunito, sans-serif;
    display: inline-block;
    font-weight: 700;
    border-radius: 40px;
    text-decoration: none;
    color: #388dbc
}

@media only screen and (max-width:767px) {
    .notfound .notfound-404 {
        width: 110px;
        height: 110px
    }

    .notfound {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 110px
    }
}