.error-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 60vh;
    padding: 2rem;
    background-color: var(--clr-blue2);
}

.error-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1200px;
    width: 100%;
    gap: 2rem;
}

.error-logo {
    width: 150px;
    height: auto;
}

.error-text {
    text-align: center;
    display: flex;
    flex-direction: column;
}

.text-error {
    font-size: 6rem;
    color: var(--clr-darkgreen);
    margin: 0;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.error-illustration {
    max-width: 400px;
    width: 100%;
    height: auto;
}
.error-text p{
    margin: 10px;
}

@media (max-width: 768px) {
    .text-error {
        font-size: 4rem;
    }

    .error-actions {
        flex-direction: column;
        align-items: center;
    }
}