* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html,body {
    padding: 0;
    margin: 0;
    min-width: 340px;
    min-height: 100vh;
    width: 100vw;
    overflow: auto;
}

#notfound {
    position: relative;
    height: 100vh;
}

#notfound .notfound-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('/file/bg404.jpg');
    background-size: cover;
    z-index: -2;
}

#notfound .notfound-bg:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 199, 0, 0.6);
    z-index: -1;
}



.notfound {
    width: 100%;
    line-height: 1.4;
    text-align: center;
    margin: auto;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.notfound  h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 140px;
    font-weight: 900;
    margin: 0px;
    color: #6a2202;
    text-transform: uppercase;
    letter-spacing: 10px;
}

.notfound h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 700;
    text-transform: uppercase;
    color: #6a2202;
    margin-top: 0px;
    margin-bottom: 15px;
}

.notfound .home-btn{
    font-family: 'Montserrat', sans-serif;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    background-color: transparent;
    border: 2px solid transparent;
    text-transform: uppercase;
    padding: 13px 25px;
    font-size: 18px;
    border-radius: 40px;
    margin: 7px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.notfound .home-btn:hover {
    opacity: 0.9;
}

.notfound .home-btn {
    color: #fff;
    background: #6a2202;
}



.notfound-social {
    margin-top: 25px;
}

.notfound-social>a {
    display: inline-block;
    height: 40px;
    line-height: 40px;
    width: 40px;
    font-size: 14px;
    color: #6a2202;
    margin: 0px 6px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}
.notfound-social>a:hover {
    color: #fff;
    border-radius: 50%;
}
.notfound-social>a:nth-child(1):hover{
    background-color: #3b5999;
}
.notfound-social>a:nth-child(2):hover{
    background-color: #cd201f;
}
.notfound-social>a:nth-child(3):hover{

    background: #f09433;
    background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}


.particles-js{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 0;
    background-image: none
}
@media only screen and (max-width: 767px) {
    .notfound h1 {
        font-size: 90px;
    }
    .notfound .home-btn{
        padding: 8px 15px;
    }
}

@media only screen and (max-width: 480px) {
    .notfound h1 {
        font-size: 70px;
    }
    .notfound h2 {
        font-size: 16px;
    }
    .notfound .home-btn {
        font-size: 14px;
    }
}
