/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inclusive Sans', Arial, sans-serif;
    background-color: #0f6b63; /* matches logo tone */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    text-align: centre;
}

.container {
    max-width: 600px;
    padding: 20px;
    text-align:center;
}

.logo {
    width: 320px;
    max-width: 80%;
    margin-bottom: 20px;
}

h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.status {
    font-size: 1rem;
    opacity: 0.85;
}