body {
    margin: 0;
    padding: 0;
    text-align: center;
    font-family: 'FrutigerLTW01-55Roman', Arial, sans-serif;
}

div.row {
    width: 100%;
    display: flex;
    justify-content: center;
}

div.box {
    width: 200px;
    height: 200px;
    border: 1px solid #fff;
    border-radius: 10px;
    display: inline-block;
    margin: 15px;
    background: linear-gradient(135deg, #eee 0%, #ccc 100%);
    text-align: center;
    overflow: hidden;
}

div.box.dark {
    background: radial-gradient(farthest-corner at 40px 40px, #aaa, #666 20%, #333 60%);
}
div.box.orange {
    background: radial-gradient(farthest-corner at 40px 40px, #87a4d0, #3e65a1 25%, #0a3a70 70%);
}
div.box.blue {
    background: radial-gradient(farthest-corner at 40px 40px, #e4c786, #cb8b3f 20%, #cb690e 60%);
}

div.box img {
    display: block;
    width: 80%;
    opacity: 0.7;
    margin: 5% auto 10px;
}
div.box:first-of-type img {
    opacity: 1;
}
div.box span {
    opacity: 0.5;
    width: 80%;
}

div.box:hover img {
    opacity: 1;
}

div.box[data-link^=http]:hover {
    cursor: pointer;
}

h1.site-title {
    color:#B10034;
}

div.site-footer {
    margin:12px;
}
