@charset "UTF-8";

/* ======================================================
RESET DEFAULT STYLES
====================================================== */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, main, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* ======================================================
BASICS
====================================================== */
* {
    margin: 0;
    padding: 0;
    outline: none;
}
html, body {
    width: 100%;
    min-width: 300px;
    background: #f8f8f8;
    color: #404040;
    font-size: 1rem;
    font-family: 'Roboto-Regular', Arial, Verdana, Helvetica, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    z-index: 999;
}
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
p {
    margin-bottom: 15px;
}
a {
    color: #ffffff;
    text-decoration: none;
}
a:hover {
	color: #2c99ed;
}
h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 3rem;
    margin: 20px 0;
}
/* ======================================================
CONTAINERS
====================================================== */
main {
    flex: 1 0 auto;
    position: relative;
    z-index: 996;
}
.main-container {
    max-width: 1400px;
    margin: 0 auto;
}
footer {
    background-color: #404040;
    color: #f8f8f8;
    padding: 2rem 0;
    position: relative;
    text-align: center;
    font-size: 0.75rem;
    z-index: 996;
    flex-shrink: 0;
}
.project-info {
    padding-bottom: 1rem;
}
/* ======================================================
PAGE STYLES
====================================================== */
.filters-container {
    margin-bottom: 3rem;
    clear: both;
    overflow: hidden;
}
ul.filters {
    font-size: 90%;
}
ul.filters li {
    padding-top: 10px;
    padding-right: 15px;
    float: left;
}
ul.filters li:last-of-type {
    padding-right: 0;
}
ul.filters li a {
    color: #404040;
    padding: 5px;
    border-radius: 20px;
    border: 1px solid #404040;
    display: block;
    width: 100px;
    text-align: center;
}
ul.filters li a.active {
    background: #404040;
    color: #f8f8f8;
}
.gallery-list {
    margin-bottom: 4rem;
    clear: both;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}
.gallery-list li {
    width: calc(100%/3);
}
.gallery-list li.hide {
    opacity: 0;
    transform: scale(0);
    width: 0;
    height: 0;
    transition: all 0.8s;
}
.gallery-list li.show {
    opacity: 1;
    transform: scale(1);
    transition: all 1.5s;
}
.gallery-list li img {
    display: block;
    width: 100%;
    height: auto;
}
