.hidden-text {
    position: absolute;
    left: -9999px; /* Moves text off-screen */
    visibility: hidden; /* Ensures it's invisible */
}

body {
    background-color: #fff; /* White background */
}

/* Styles specific to the 404 page */
body.error-404 {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    text-align: center;
}

.error-404 .container {
    max-width: 600px;
}