body {
    font-family: 'Roboto', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    text-align: center;
}

.container {
    max-width: 800px;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5rem;
    color: #0056b3;
    margin-bottom: 0.5rem;
}

.slogan {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-top: 0;
}

.content p {
    font-size: 1rem;
    line-height: 1.6;
}

.status {
    font-size: 1.5rem;
    font-weight: bold;
    color: #d9534f;
    margin-top: 2rem;
}

footer {
    margin-top: 3rem;
    font-size: 0.8rem;
    color: #999;
    border-top: 1px solid #eee;
    padding-top: 1rem;
}

footer p {
    margin: 0.2rem 0;
}