.standard_main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}
.title_404 {
    display: block;
    text-align: center;
    font-size: 20rem;
    line-height: 1em;
    background: linear-gradient(180deg, #FFDA02 0%, #FF8A02 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    position: relative;
    z-index: 2;
}
.text_404 {
    display: block;
    font-size: 3.2rem;
    line-height: 1.2em;
    text-align: center;
}
.link_404 {
    display: block;
    font-size: 3.2rem;
    line-height: 1.2em;
    cursor: pointer;
    color: #000000;
    text-decoration: underline;
    margin-top: 10rem;
}
.link_404:hover {
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .standard_main {
        padding-top: 15rem;
        padding-bottom: 5rem;
    }
    .title_404 {
        font-size: 30rem;
    }
    .text_404 {
        font-size: 4rem;
        margin-top: 1rem;
    }
    .link_404 {
        font-size: 4rem;
        margin-top: 15rem;
    }
}
