@import url(http://fonts.googleapis.com/css?family=Yanone+Kaffeesatz:400,200);
.fa {
    color: #FFFFFF;
}

div[class^="btn2"] {
    float: left;
    margin: 0 0px 0px 0;
    height: 230px;
    width: 20%;
    position: relative;
    cursor: pointer;
    transition: all .4s ease;
    border: solid 2px transparent;
    text-align: center;
    line-height: 22px;
}

div[class^="btn2"]:hover {
    opacity: 0.7;
}

div[class^="btn2"]:active {
    transform: scale(.98, .98);
}

.btn2-big {
    width: 200px;
}

.btn2-small {
    width: 90px;
}

.last {
    margin-right: 0 !important;
}

.Start {
    color: white;
    font: normal 50px 'Yanone Kaffeesatz', sans-serif;
    margin: 12px 0;
    cursor: pointer;
    user-select: none;
    transition: all .3s ease;
}

.Start:hover {
    text-shadow: 0 0 4px white;
}

.space {
    margin-bottom: 110px;
}

.label {
    position: absolute;
    color: rgb(255, 255, 255);
    left: 60px;
    top: 180px;
    user-select: none;
}

.bottom {
    bottom: 5px;
}

.top {
    top: 5px;
}

.red {
    background: #df0024;
}

.blue {
    background: #00a9ec;
}

.orange {
    background: #ff9000;
}

.green {
    background: #0e5d30;
}

.purple {
    background: #8b0189;
}

.red-light {
    background: #ce4e4e;
}

.photo {
    background: url('http://lorempixel.com/200/95/people');
    background-position: -2px -2px;
}

.gray {
    background: #5f5f5f;
    animation: flip 6s linear infinite;
    transform: rotateX(0deg);
}

.green-bright {
    background: #78d204;
}

.blue-nav {
    background: #25478e;
}

.redish {
    background: #fe0000;
}

.yellow {
    background: #d0d204;
}

::selection {
    background: mintcream;
}

@keyframes flip {
    0% {
        transform: rotateX(0deg);
    }
    15% {
        transform: rotateX(360deg);
    }
    100% {
        transform: rotateX(360deg);
    }
}

.photo img {
    top: -4px;
    left: -4px;
    position: absolute;
    opacity: 0;
    animation: fade 8s ease-in-out infinite 8s;
    z-index: 0;
    border: solid 2px transparent;
    transition: all .3s ease;
}

.photo img:hover {
    border: solid 2px mintcream;
}

@keyframes fade {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    50% {
        opacity: 1;
    }
    60% {
        opacity: 0;
    }
}