body, html {
    width: 100%;
    height: 100%;
}

.error {
    min-width: 100%;
    min-height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px;
    background-image: linear-gradient(-30deg, #F2F2F2, #CCCCCC);
}

.error_description {
    max-width: 580px;
    margin: 0 auto;
}

    .error_description .links {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 20px;
    }

    .error_description .links > div {
        flex-grow: 1;
    }

    .error_description .term_definition {
        font-weight: 700;
        font-size: 19px;
        padding-bottom: 30px;
    }

.error_description .term > p {
    padding: 30px 0;
}

    .error_description a {
        display: block;
        color: var(--blue);
        background-color: #E9E9E9;
        border: 1px solid var(--blue);
        border-radius: var(--rounding_8px);
        text-align: center;
        cursor: pointer;
        text-decoration: none;
        transition: 0.2s;
        padding: 16px;
    }

        .error_description a:hover {
            text-decoration: none;
            border: 1px solid rgba(13, 76, 211, 0);
            /*background-color: #BDCAE5;*/
            background-image: linear-gradient(-30deg, #DAE4F9, #B6CAF4);
            box-shadow: 4px 4px 0px #7D95C9;
        }

.error_picture {
    max-width: 580px;
    margin: 0 auto;
    border: 2px solid var(--black_30_percent);
    border-radius: var(--rounding_8px);
    overflow: hidden;
    padding-top: 60px;
    background-color: var(--white);
    filter: drop-shadow(3px 3px var(--black_30_percent));
}

    .error_picture .header {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-end;
        column-gap: 20px;
    }

    .error_picture .image_sea img {
        width: 100%;
        height: auto;
    }

    .header .message {
    font-weight: 900;
    font-size: 40px;
    color: #999999;
}

.error_picture .header .image_sea {
    width: 100%;
    height: auto;
}

.error_picture .number {
    font-weight: 900;
    font-size: clamp(6rem, calc(6rem + 3vw), 20rem);
    text-align: center;
    color: var(--black_40_percent);
}

