* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family: Arial, sans-serif;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #f5f5f5;
}

.app {
    width: 90%;
    max-width: 600px;

    padding: 40px;

    background: white;

    border-radius: 12px;

    text-align: center;
}

h1 {
    margin-top: 0;
    font-size: 36px;
}

#status {
    margin: 25px 0;
}

.account {
    padding: 20px;

    background: #eeeeee;

    border-radius: 8px;

    word-break: break-all;
}

.account strong {
    display: block;
    margin-top: 10px;
}