* {
    margin: 0;
    padding: 0;
}

body {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

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

    background-color:#444;
    color: #fff;
    font-family: Arial, Helvetica, sans-serif; 

}

.outer_box {
    background-color: #a00;
    padding: 1em;
    width: 30em;
    border-radius: 2rem;
}

.inner_box {
    border: 1px solid #ddd;
    border-radius: 2rem;
}

.inner_box .code {
    font-size: 400%;
    text-align: center;
    background-color:#ddd;
    color: #a00;
    border-radius: 2rem 2rem 0 0;
}

.inner_box .status {
    font-size: 150%;
    text-align: center;
    padding-top: 0.5rem;
}

.inner_box .details {
    padding: 1rem;
    hyphens: auto;
    text-align: justify;
}