/* Style for the not found container */
.not-found-container {
    text-align: center;
    margin: 20px;
}

/* Style for the not found title */
.not-found-title {
    font-size: 24px;
    font-weight: bold;
    color: #ff5555; /* Red color for emphasis */
}

/* Style for the not found image */
.not-found-image {
    max-width: 100%;
    height: auto;
    margin: 20px 0;
    border: 2px solid #ddd; /* Add a border for visual appeal */
    border-radius: 8px; /* Rounded corners */
}

/* Style for the not found text */
.not-found-text {
    font-size: 18px;
    line-height: 1.5;
    color: #333; /* Dark gray text color */
}

/* Media query for responsiveness */
@media screen and (max-width: 768px) {
    /* Adjust styles for smaller screens here */
    .not-found-title {
        font-size: 20px;
    }
    .not-found-image {
        margin: 10px 0;
    }
    .not-found-text {
        font-size: 16px;
    }
}
