.not-found-section{
    text-align: center;
    padding: 5rem 0;
}
.not-found-section img{
    width: 100%;
    height: auto;
    max-width: 500px;
}
.not-found-section h1{
    font-size: 50px;
    text-transform: uppercase;
    margin: 1rem;
    display: block;
}
.not-found-section p a{
    color: var(--theme_color);
}

@media screen and (max-width: 768px) {
    .not-found-section{
        text-align: center;
        padding: 5rem 0;
    }
    .not-found-section img{
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    .not-found-section h1{
        font-size: 30px;
        text-transform: uppercase;
        margin: 1rem;
        display: block;
    }
    .not-found-section p a{
        color: var(--theme_color);
    }
}