html {
    height: 100%;
}

body {
    width: 580px;
    min-height: 100%;
    background: rgb(15,15,15) linear-gradient(to bottom left, rgb(25,25,25), rgb(10,10,10)) no-repeat;
    background-size: cover;
    
    color: #fff;
    
    margin: 0 auto;
    
    font-family: 'Montserrat', Tahoma, Geneva, sans-serif;
    font-size: 24px;
}

a.tile {
    display: block;
    width: 200px;
    height: 200px;
    border-radius: 10px;
    background: rgb(0,15,51);
    background-image: linear-gradient(to bottom right, rgb(0,15,51), rgb(20,20,25));
    margin: 100px 50px;
    padding: 15px;
    float: left;
    box-shadow: 0 0 25px 0 rgb(0,0,0), inset 0 0 25px 0 rgb(20,20,25);
    color: rgb(255,255,255);
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    
    transition: box-shadow .5s;
}

a.tile:first-child {
    margin-left: 0;
}

a.tile:last-child {
    margin-right: 0;
}

a.tile:hover,
a.tile:focus,
a.tile:active {
    box-shadow: 0 0 30px 0 rgb(50,50,200), inset 0 0 25px 0 rgb(20,20,251);
}

a.tile div.img-container {
    width: 200px;
    height: 160px;
    overflow: hidden;
    border-radius: 5px;
}

a.tile img {
    width: 200px;
    height: 200px;
}

a.tile .caption {
    margin: 10px 0;
    text-shadow: rgb(0,0,0) 0 0 8px;
}

#web-img-fake {
    background: rgb(0,0,0);
    font-size: 80px;
    line-height: 140px;
    font-family: 'Cutive Mono';
    font-weight: normal;
}

.tight {
    letter-spacing: -.25em;
}

.tighter {
    letter-spacing: -.5em;
}

.blink {
    -webkit-animation-name: blinker;
    -webkit-animation-duration: 1.25s;
    -webkit-animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;

    -moz-animation-name: blinker;
    -moz-animation-duration: 1.25s;
    -moz-animation-timing-function: ease;
    -moz-animation-iteration-count: infinite;

    animation-name: blinker;
    animation-duration: 1.25s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

@-moz-keyframes blinker {  
    5% { opacity: 1.0; }
    45% { opacity: 0.0; }
    55% { opacity: 0.0; }
    95% { opacity: 1.0; }
}

@-webkit-keyframes blinker {  
    5% { opacity: 1.0; }
    45% { opacity: 0.0; }
    55% { opacity: 0.0; }
    95% { opacity: 1.0; }
}

@keyframes blinker {  
    5% { opacity: 1.0; }
    45% { opacity: 0.0; }
    55% { opacity: 0.0; }
    95% { opacity: 1.0; }
}

@media(max-width:650px) {
    body {
        width: 100%;
        background: rgb(0,0,0) linear-gradient(to bottom left, rgb(55,55,55), rgb(20,20,20) 10%, rgb(5,5,5) 90%, rgb(0,0,0)) no-repeat;
    }
    
    a.tile,
    a.tile:first-child,
    a.tile:last-child {
        float: none;
        margin-top: 50px;
        margin-left: auto;
        margin-right: auto;
    }
}