body {
    /*height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;*/
    font-family: "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif;
    background: linear-gradient(to left, #517fa4, #243949);
}

.card-container{
    perspective: 900px;
    margin-right: 20px;
}
.card, .front, .back {
    /*width: 16em;*/
    height: 3em;
}

.card{
    position: relative;
    transition: all 0.1s cubic-bezier(0, 0.4, 0.7, 1);
    transform-style: preserve-3d;
    margin-bottom: 1em;
}

.front,.back{
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 3px;
    color: white;
    box-shadow: 0 27px 55px 0 rgba(0, 0, 0, 0.3), 0 17px 17px 0 rgba(0, 0, 0, 0.15);
    backface-visibility: hidden;
    padding: 0.5em 0.1em;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
}

.card-container:hover .card{
    /* transform: rotateY(180deg);*/
    transform: scale(1.1,1.1);
}

.card:hover {
    transform: scale(1.1,1.1);
}

.front {
    background: #2F7664;
    background: linear-gradient(to right, #2f7664 0%,#42a58b 100%);
}
.back{
    /* transform: rotateY(180deg);*/
    transform: rotate3d(1,0,0,180deg) scale(1.25,1.25);
    background: #0FA674;
}

.number, .number:link, .number:visited {
    color: #111;
    text-decoration: none;
}

.number:hover {
    color: #ccf;
}

.bignumber {
    font-size: 1.5em;
    width: 3em;
    font-stretch: condensed;
}

.text {
    font-weight: bold;
    text-align: center;
    width: 10em;
    text-decoration: none;
    line-height: 14px;
}

.text:link, .text:visited {
    color: #fff;
    font-size: 80%;
}

.text:hover {
    color: #ccf;
}

.multiPrint {
    cursor: pointer;
    background: #BF4645;
}
.multiPrint:hover {
    border: 1px solid white;
    background: #9F9694;
}


.banner {
    text-align: center;

}

.submit {
    font-size: 2em;
}

input[type=checkbox] {
    transform: scale(1.25);
    vertical-align: bottom;
    margin-bottom: 0.6em;
}