*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background-color: #1e1a1a;
}


/* Fonts */
@font-face {
    font-family: 'shlop';
    src: url('../fonts/shlop-webfont.woff') format('woff2'),
         url('../fonts/shlop-webfont.woff2') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'scary_feet';
    src: url('../fonts/scary_feet-webfont.woff2') format('woff2'),
         url('../fonts/scary_feet-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

.no-page{
    height: 100vh;
    background-color: #1e1a1a;
}

    .home{
        height: 5vh;
        display: flex;
        align-items: center;
    }

    .home a{
        text-decoration: none;
        color: #a1886e;
        padding-left: 2rem;
        padding-top: 2rem;
        vertical-align: middle;
        font-family: "scary_feet";
        font-size: 2rem;
    }

    .not-found-info{
        height: 95vh;
        display: flex;
        align-items: center;
        justify-content: center;
        background-image: url(../img/HeaderBg.png);
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }

        .left{
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0 2rem;
        }

            .ahhh{
                width: 100%;
                padding-bottom: 4rem;
            }

                .ahhh h1{
                    font-family: "shlop";
                    color: #8cb670 ;
                    font-size: 8rem;
                    letter-spacing: 5px;
                    text-align: center;
                    text-shadow: 2px 2px 4px #111010;
                }

            .left h2{
                font-family: "shlop";
                color: #8cb670 ;
                font-size: 2rem;
                letter-spacing: 5px;
                line-height: 1.5;
                text-align: center;
                text-shadow: 2px 2px 4px #111010;
            }

        .right{
            flex: 1;
            width: 100%;
            height: 100%;
            background-image: url(../img/Logo_404.png);
            background-size: 80%;
            background-repeat: no-repeat;
            background-position: center;
        }


/* Media Queries*/
@media only screen and (max-width: 1024px) {
    .no-page{
        height: 100%;
        width: 100%;
    }
    
        .not-found-info{
            flex-direction: column;
        }
    
            .home a{
                font-size: 3rem;
            }
    
            .ahhh{
                padding-bottom: 1rem;
                margin: auto;
            }
    
                .ahhh h1{
                    font-size: 5rem;
                    letter-spacing: 5px;
                }
    
        .left h2{
            font-size: 2rem;
        }
    
        .right{
            flex: 2;
            background-size: 70%;
        }

}


@media only screen and (max-width: 700px) {
.no-page{
    height: 100%;
    width: 100%;
}

    .not-found-info{
        flex-direction: column;
    }

        .home a{
            font-size: 1rem;
        }

        .ahhh{
            padding-bottom: 1rem;
            margin: auto;
        }

            .ahhh h1{
                font-size: 2rem;
                letter-spacing: 5px;
            }

    .left h2{
        font-size: 1rem;
    }

    .right{

        flex: 2;
    }
}

@media only screen and (max-width: 320px) {
    

    .ahhh{
        padding-top: 1rem;
    }
}

        


