/* Error page wrapper */
.content-wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

/* Error message styling */
.error-text {
    max-width: 600px;
}

.error-text h2 {
    font-size: 3rem;
    color: var(--font-color);
    font-weight: bold;
}

.error-text h5 {
    font-size: 1.2rem;
    margin-top: 0.5rem;
    color: #555;
}

.error-text p {
    font-size: 1rem;
    color: #777;
    margin-top: 1rem;
}

/* Image styling */
.content-wrapper img {
    max-width: 100%;
    height: auto;
    max-height: 300px;
    object-fit: contain; /* Ensure the image keeps its aspect ratio */
    margin-top: 1rem;
}
