body {
    font-family: 'Arial', sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    background-color: #f0f0f0; /* Light gray background */
    color: #333; /* Dark gray text */
}

.container {
    text-align: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    width: 90%;
}

.message-box h1 {
    color: #cc0000; /* Red for emphasis */
    font-size: 2.5em;
    margin-bottom: 20px;
}

.message-box p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 15px;
}

.icon-deleted {
    font-size: 4em;
    color: #cc0000; /* Red for the icon */
    margin-top: 30px;
    animation: fadePulse 2s infinite alternate; /* Simple animation */
}

@keyframes fadePulse {
    from {
        opacity: 0.6;
    }
    to {
        opacity: 1;
    }
}