html,
body {
    /* The image used */
    /* Full height */
    height: 100%;

    /* Center and scale the image nicely */
}

.box {
    background: #fff;
    transition: all 0.2s ease;
    border: 2px #dadada;
    margin-top: 10px;
    box-sizing: border-box;
    border-radius: 5px;
    background-clip: padding-box;
    padding: 15px;
    min-height: 340px;
}

.box:hover {
    border: 2px solid #525C7A;
}

.box span.box-title {
    color: #fff;
    font-size: 24px;
    font-weight: 300;
    text-transform: uppercase;
}

.box .box-content {
    padding: 16px;
    border-radius: 0 0 2px 2px;
    background-clip: padding-box;
    box-sizing: border-box;
}

.box .box-content p {
    color: #515c66;
    text-transform: none;
}
