* {
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
}

body {
    background: #dfe6e9;
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
}

h1, h2 {
    margin: 1rem 0;
}

h2 {
    margin-top: 0;
}

.wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 1rem;
    min-height: 100%;
}

.status {
    flex: 1;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    text-align: center;
    font-size: 1.3rem;
    text-shadow: 1px 1px #eee;
}

#code-view {
    flex: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.mobile-code {
    width: 100%;
    max-width: 750px;
    background: white;
    padding: 1rem;
}

.mobile-code img {
    width: 100%;
}