/* style.css */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #f4f7fa;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    color: #333;
}

.container {
    max-width: 500px;
    padding: 2em;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

h1 {
    color: #2c3e50;
    margin-bottom: 0.5em;
}

p {
    margin: 0.5em 0;
    font-size: 1.1em;
}

.etc {
    margin-top: 1em;
    padding: 0.5em;
    font-size: 1.2em;
    font-weight: bold;
    color: #e74c3c;
    background: #fde3e3;
    border-radius: 5px;
}
