* {
    box-sizing: border-box;
    padding: 0;
    margin: 0;
}

body {
    background: radial-gradient(ellipse at bottom, #1b2735 0%, #090a0f 100%);
    width: 100vw;
    height: 100vh;
}

#status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-family: "Courier New", Courier, monospace;
    font-size: 30px;
    color: white;
}

#status span {
    color: green;
    text-transform: uppercase;
    font-weight: 700;
}
