#notFoundSection {
    position: relative;
    text-align: center;
    margin-top: 80px;
}

h1 {
    font-size: 72px;
    font-weight: 700;
    line-height: normal;
    position: relative;
    top: -48px;
    margin: 0px;
}

#notFoundSection>div:first-child>p {
    padding: 0px 0px 40px 0px;
}

#notFoundSection>div:last-child {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.iconArrowLeft {
    display: inline-block;
    background-image: url(./assets/arrow-narrow-left.svg);
    background-repeat: no-repeat;
    width: 18px;
    height: 17px;
    margin-right: 8px;
}

a.button.button-white {
    padding: 14px 24px;
}

#redirectionSection {
    margin: 80px auto;
    display: flex;
    gap: 32px;
    height: fit-content;
}

#redirectionSection>div {
    border-radius: var(--Border-md, 6px);
    border: 1px solid var(--Border-200, #E5E7EB);
    background-color: var(--Bkg-White, #FFF);
    display: flex;
    min-width: 200px;
    padding: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 48px;
    flex: 1 0 0;
}

#redirectionSection>div>div>h2 {
    font-size: 18px;
    font-weight: 700;
    line-height: normal;
}

#redirectionSection>div>div>p {
    padding: 5px 0px;
}

#redirectionSection>div>div>a {
    font-size: 16px;
    font-weight: 700;
}

.iconArrow {
    width: 24px;
    height: 24px;
    display: inline-block;
    background-image: url(./assets/arrowgreen.svg);
    background-repeat: no-repeat;
    background-position: 7px 8px;
}

/* PHONE (phones, 600px and down) */
@media screen and (max-width: 600px) {

    h1 {
        font-size: 34px;
        position: static;
        padding: 0px 30px;
    }

    #notFoundSection>div:first-child>p {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
    }

    #notFoundSection>div:last-child {
        width: calc(100% - 40px);
        flex-direction: column;
    }

    #notFoundSection>div:last-child>a {
        width: 100%;
        padding: 20px;
    }

    #redirectionSection {
        width: 100%;
        display: flex;
        flex-direction: column;
        margin: 60px auto 80px;
    }

    #redirectionSection>div {
        min-width: 100px;
        gap: 32px;
    }
}