.container {
    width: 400px;
    height: 400px;

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

    margin: auto;
}

img.center {
    width: 200px;
    margin-left: 200px;
    transform: translate(-50%, 0);
}

.center {
    text-align: center;
}

.vcenter {
    position: absolute;
    top: 50%;
    transform: translate(0, -80%);
}

.message {
    font-size: small;
    color: coral;
}

.info {
    text-align: left;
}

.circle {
    /* background: #cccccc;
    border-radius: 4em;
    -moz-border-radius: 4em;
    -webkit-border-radius: 4em;
    color: #ffffff;
    display: inline-block;
    font-weight: bold;
    line-height: 8em;
    text-align: center;
    width: 8em;
    font-size: large; */

    border-radius: 50%;
    width: 100px;
    height: 100px;
    padding: 34px;
    display: inline-block;

    background: #fff;
    border: 2px solid lightskyblue;
    color: lightskyblue;
    text-align: center;

    font: 81px Arial, sans-serif;
  }

.number {
    display: block;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
}