body {
    background-color: #efefef; 
}

.gft-error {
    display: table;
    position: relative;
    top: 16vh;
    margin: 0 auto;
    padding: 30px 10px;
    font-size: 0;
    font-family: sans-serif;
}

.gft-error__image-wrap {
    display: inline-block;
    height: 300px;
}

.gft-error__text-wrap {
    display: inline-block;
    position: relative;
    height: 200px;
    vertical-align: bottom;
    padding-left: 30px;
}

.gft-error__link {
    display: block;
    font-size: 20px;
    color: #ff7900;
    text-decoration: none;
    text-align: right;
}

.gft-error__link:hover {
    color: #ffaf68;
}

.gft-error__title {
    font-size: 38px;
    color: #b6b6b6;
    text-align: center
}

.gft-error__footer-text {
    display: inline-block;
    position: fixed;
    bottom: 15px;
    left: 15px;
    font-size: 13px;
    color: #6c6c6c;
}

.gft-error__footer-text a {
    font-size: 13px;
    color: #6c6c6c;
    text-decoration: none;
}

.gft-error__footer-text a:hover {
    color: #ff7900;
}


/* MEDIA */

@media (max-width: 800px) {
    .gft-error {
        display: block;
        top: 2vh;
    }

    .gft-error__image-wrap {
        display: flex;
        justify-content: center;
        height: auto;
    }

    .gft-error__image-wrap img {
        width: 100%;
        max-width: 350px;
    }

    .gft-error__text-wrap {
        display: flex;
        height: auto;
        flex-direction: column;
        padding-left: 0;
    }

    .gft-error__title {
        font-size: 28px;
    }

    .gft-error__footer-text {
        text-align: center;
        left: inherit;
    }

    .gft-error__link {
        text-align: center;
        font-size: 18px;
    }
}