.not_found_main_div
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.not_found_img
{
    /* width: 700px;
    height: 467px; */
    width: 495px;
    height: 355px;
}

.not_found_title
{
    font-family: var(--font-fraunces), serif;
    font-size: 40px;
    font-weight: 700;
    line-height: 50px;
    letter-spacing: 4px;
    color: rgba(0, 0, 0, 1);
}

.not_found_info
{
    font-size: 20px;
    font-weight: 400;
    line-height: 30px;
    letter-spacing: -0.20000000298023224px;
    color: rgba(84, 89, 95, 1);
    width: 40%;
    text-align: center;
}

.not_found_search_input
{
    background-color: rgba(245, 245, 245, 1);
    width: 570px;
    height: 60px;
    border-radius: 7px;
}

.link_go_back_home
{
    width: 169.27px;
    height: 49px;
    padding: 11px 25.62px 11px 26px;
    background-color: rgba(245, 124, 51, 1);
    border: 1px solid rgba(245, 124, 51, 1);
    font-size: 12px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 2.4000000953674316px;
    text-align: center;
    text-decoration: none;
    color: rgba(255, 255, 255, 1);
    margin: 2% 0%;
    transition: 1s;
}

.link_go_back_home:hover
{
    background-color: rgba(255, 255, 255, 1);
    color: rgba(245, 124, 51, 1);
}

/* Mobile screen */
@media only screen and (max-width: 500px)
{
    .not_found_search_input 
    {
        width: 100%;
    }

    .not_found_img
    {
        width: 100%;
        height: 100%;
    }

    .not_found_info 
    {
        font-size: 15px;
        line-height: 23px;
        width: 100%;
    }

    .link_go_back_home 
    {
        margin: 10% 0%;
    }
}
/* End of Mobile Screen */