/* 
Theme Name: WheresRay.com 
Author: Raymond Chan
Author URI: http://www.wheresray.com/
*/

body {
    font-family: 'Source Sans Pro', sans-serif;
    background: rgb(237,28,36);
}
.box {
    display: block;
    width: 100%;
    position: relative;
    background-size: cover;
    background-position: center;
}
.box:before {
    content: '';
    display: block;
    width: 100%;
    position: relative;
}
.ratio-1x1:before {
    padding-top: 100%;
}
.box-link {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.box-content {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
}
.box-title {
    display: block;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
}

.screen {
    display: block;
    height: 100vh;
    width: 100%;
    background: rgb(237,28,36);
    color: #FFF;
    position: relative;
}
.screen-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    font-size: 3rem;
}

@media screen and (max-width: 39.9375em) {
    .screen-content {
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    .screen-content {
        font-size: 2rem;
    }
}
@media screen and (min-width: 64em) {
    .screen-content {
        font-size: 3rem;
    }
}
.logo {
    max-width: 80%;
}

.content {
    display: block;
    position: absolute;
    top: 100vh;
    left: 0;
    min-height: 100vh;
    height: auto;
    width: 100%;
    background-color: #EEE;
    overflow-y: auto;
}
.portfolio-item {
  position: relative;
  transition: 1s;
}
.portfolio-item:hover {
    z-index: 1;
    box-shadow: 0 0 3rem rgba(0,0,0,.8);
}