/* Minification failed. Returning unminified contents.
(2,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(3,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(4,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(5,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(6,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '-'
(10,58): run-time error CSS1039: Token not allowed after unary operator: '-cx-red'
(11,55): run-time error CSS1039: Token not allowed after unary operator: '-cx-red'
(12,53): run-time error CSS1039: Token not allowed after unary operator: '-cx-red'
(13,50): run-time error CSS1039: Token not allowed after unary operator: '-cx-red'
(16,37): run-time error CSS1039: Token not allowed after unary operator: '-cx-light-shadow'
(68,25): run-time error CSS1039: Token not allowed after unary operator: '-cx-red'
(80,25): run-time error CSS1039: Token not allowed after unary operator: '-cx-white'
 */
:root {
    --cx-red: rgba(194,32,38,1);
    --cx-white: rgba(255,255,255,1);
    --cx-black: rgba(0,0,0,1);
    --cx-silver: rgba(214,214,214,1);
    --cx-light-shadow: rgba(255,255,255,0.65);
}

.messagecolor {
    background-image: -webkit-linear-gradient(90deg,var(--cx-red) 30%, rgba(145,0,5,0.1));
    background-image: -moz-linear-gradient(90deg,var(--cx-red) 30%, rgba(145,0,5,0.1));
    background-image: -o-linear-gradient(90deg,var(--cx-red) 30%, rgba(145,0,5,0.1));
    background-image: linear-gradient(90deg,var(--cx-red) 30%, rgba(145,0,5,0.1));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    -webkit-text-stroke-color: var(--cx-light-shadow);
    -webkit-text-stroke-width: 1.0px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
    background-color: black;
}

#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 {

    width: 100%;
    line-height: 1.4;
    text-align: center;
}

    .notfound .notfound-404 {
        position: relative;
        height: 240px;
    }

        .notfound .notfound-404 h1 {
            font-family: 'Montserrat', sans-serif;
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            font-size: 252px;
            font-weight: 900;
            margin: 0px;
            color: var(--cx-red);
            text-transform: uppercase;
            letter-spacing: -40px;
            margin-left: -20px;
        }


        .notfound .notfound-404 h3 {
            font-family: 'Lato', 'Cabin', sans-serif;
            position: relative;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--cx-white);
            margin: 0px;
            letter-spacing: 1px;
            padding-left: 6px;
        }

    .notfound h2 {
        font-family: 'Lato','Cabin', sans-serif;
        font-weight: 400;
        text-transform: uppercase;
        margin-top: 25px;
        margin-bottom: 25px;
    }

    .notfound span {
        font-size: unset;
    }
/*Xtra Small Devices*/
@media only screen and (max-width: 767px) and (min-height: 400px) {
    .notfound .notfound-404 {
        height: 200px;
        max-width: 520px;
    }

        .notfound .notfound-404 h1 {
            font-size: 180px;
        }

    .notfound h2 {
        font-size: 14px;
    }

    .notfound .notfound-404 h3 {
        font-size: 18px;
    }
}

@media only screen and (max-height: 399px) {
    .notfound .notfound-404 {
        height: 200px;
        max-width: 520px;
    }

        .notfound .notfound-404 h1 {
            font-size: 160px;
        }

    .notfound h2 {
        font-size: 14px;
    }

    .notfound .notfound-404 h3 {
        font-size: 18px;
    }
}

/*Small Devices*/
@media only screen and (min-width: 768px) and (max-width: 991px) and (min-height:400px){
    .notfound .notfound-404 {
        height: 287px;
        max-width: 520px;
    }

        .notfound .notfound-404 h1 {
            font-size: 250px;
        }

    .notfound h2 {
        font-size: 24px;
    }
}

/*Medium Devices*/
@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .notfound .notfound-404 {
        height: 330px;
    }

        .notfound .notfound-404 h1 {
            font-size: 280px;
        }

    .notfound h2 {
        font-size: 3.5vw;
    }
}

/*Large Devices*/
@media only screen and (min-width: 1200px) and (max-width: 1920px) {
    .notfound .notfound-404 {
        height: 350px;
    }

        .notfound .notfound-404 h1 {
            font-size: 320px;
        }

    .notfound h2 {
        font-size: 3.5vw;
    }
}

/*Xtra Large Devices*/
@media only screen and (min-width: 1921px) {
    .notfound .notfound-404 {
        height: 360px;
    }

        .notfound .notfound-404 h1 {
            font-size: 320px;
        }

    .notfound h2 {
        font-size: 32px;
    }

    .notfound h3 {
        font-size: 36px;
    }
}

