/* error.css */

/* Style the error section */
section {
    max-width: 500px;
    margin: auto;
    padding: 2.5rem;
    background-color: var(--white);
    border-radius: 0.75rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* Style the main heading */
section h1 {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

/* Style the error message */
section p {
    font-size: 1.25rem;
    color: var(--secondary);
    margin-bottom: 2rem;
}

/* Style the "Go back home" button */
section .button.primary {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
}
