/* app css stylesheet */

body {
	background-color: #333;
	color: #666;
	font-family: Monospace;
	font-size: 25px;
	overflow: auto;
}

h1, p {
    margin: 0;
    padding: 0 0 .5em;
}

#header {
    font-size:150px;
    text-align: center;
    color: #ff9966;
}

#sort-options {
    margin: auto;
	width: 1000px;
}

#search {
	float: right;
    color: #ffff99;
    height: 100px;
}

#projects {
    max-width: 1600px;

	margin: auto;
}

.container {
	display: inline-block;
    text-align: center;

    margin: 10px 10px;
    height: 300px;
    width: 300px;
}
/*
 * Caption component
 */
.caption {
    position: relative;
    overflow: hidden;
    text-align:center;

    -webkit-transform: translateZ(0);
            transform: translateZ(0);
}

.caption::before {
    content: ' ';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: transparent;
    transition: background .35s ease-out;
}

.caption:hover::before {
    background: rgba(0, 0, 0, .8);
}

.caption__media {
    display: block;
    width: 300px;
    height: 300px;
    min-width: 100%;
    max-width: 100%;
    height: auto;
}

.caption__overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 10px;
    color: #f0f0f0;

    -webkit-transform: translateY(100%);
            transform: translateY(100%);

    transition: -webkit-transform .35s ease-out;
    transition:         transform .35s ease-out;
}

.caption:hover .caption__overlay {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.caption__overlay__title {
    -webkit-transform: translateY( -webkit-calc(-100% - 10px) );
            transform: translateY( calc(-100% - 10px) );

    transition: -webkit-transform .35s ease-out;
    transition:         transform .35s ease-out;
}

.caption:hover .caption__overlay__title {
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.caption__overlay__content {
    font-size: 20px;
}

.caption__overlay__date {
	font-size: 15px;
}

#sortBy {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sortByOption {

    margin: auto auto;
    display: inline-block;
    float: left;
    color: #ff9966;
    margin: 3px 3px 0px 3px;
    padding: 5px 5px 0px 5px;
}

.active {
    background: #555;
}

#tabs {
    float: left;
    width:500px;
    color: #ffff99;
}
