.pageNotFoundContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f0f4f8;
    text-align: center;
    padding: 20px;
}

.heading {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 20px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.subText {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.homeLink {
    padding: 10px 20px;
    font-size: 1rem;
    color: #fff;
    background-color: #007bff;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.homeLink:hover {
    background-color: #0056b3;
}
