﻿
.error-page {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100dvh - 120px);
    text-align: center;
    padding: 3rem 1.5rem;
    background-color: #fdfcf6;
    color: var(--page-text);
}

.error-page__title {
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.error-page__subtitle {
    font-size: 1.5rem;
    color: var(--color-muted);
    margin-bottom: 1.5rem;
}

.error-page__message {
    max-width: 600px;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-page__url {
    font-family: monospace;
    color: var(--color-secondary);
    word-break: break-all;
}

.error-page__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.error-page__illustration {
    width: 350px;
    height: auto;
    opacity: 0.7;
    margin-bottom: 2rem;
}


@media (max-width: 639px) {
    .error-page__title {
        font-size: 2.5rem;
    }

    .error-page__subtitle {
        font-size: 1.2rem;
    }

    .error-page__illustration {
        width:180px ;
    }
}
