/* styles.css */
body {
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background-color: #f0f0f0;
}

.message-box {
    background-color: #ffffff;
    border: 2px solid #007BFF;
    border-radius: 10px;
    padding: 20px;
    width: 60%;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.message-box h1 {
    margin: 0;
    line-height: 1.5;
    color: #333333;
}

.message-box img {
    max-width: 200px;
    margin-bottom: 20px;
}

.message-box p {
    margin: 10px 0;
    line-height: 1.6;
    color: #555555;
}
