@font-face {
    font-family: 'open_sanslight';
src: url('fonts/opensans-light-webfont.eot');
src: url('fonts/opensans-light-webfont.eot?#iefix') format('embedded-opentype'),
     url('fonts/opensans-light-webfont.woff2') format('woff2'),
     url('fonts/opensans-light-webfont.woff') format('woff'),
     url('fonts/opensans-light-webfont.ttf') format('truetype'),
     url('fonts/opensans-light-webfont.svg#open_sanslight') format('svg');
font-weight: normal;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'open_sansregular';
src: url('fonts/opensans-regular-webfont.eot');
src: url('fonts/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
     url('fonts/opensans-regular-webfont.woff2') format('woff2'),
     url('fonts/opensans-regular-webfont.woff') format('woff'),
     url('fonts/opensans-regular-webfont.ttf') format('truetype'),
     url('fonts/opensans-regular-webfont.svg#open_sansregular') format('svg');
font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    overflow-x: hidden;
    background:linear-gradient(90deg, rgb(33, 31, 31) 0%, rgba(43, 42, 42, 0.952) 27%, rgba(49, 45, 45, 0.952) 67%, rgba(31, 29, 29, 0.952) 100%);
}

#logo{
    width: 200px;
    margin: 0px auto;
    position: relative;
    display: block;
    padding-top: 30px;
    padding-bottom: 20px;
}
.fg-container {
    /**
     * Flex display is the key point to make images grow.
     */
    display: flex;
    flex-wrap: wrap;
	max-width: 1600px;
	margin: 0px auto !important;
}
.fg-container::after {
    /**
     * Creates a blank element after the last image.
     */
    content: '';
    /**
     * Prevents the images in the last row to grow.
     * In case they become too large.
     */
    flex-grow: 99999;
    /**
     * Well... If the left space is less than (screenHeight / 4), make them grow!
     */
    min-width: calc(100vw / 4);
}
.fg-item {
    /**
     * So that the text inside can be positioned absolutely.
     */
	background: linear-gradient(50deg, rgb(6, 6, 6) 0%, rgba(43, 42, 42, 0.952) 27%, rgba(49, 45, 45, 0.952) 67%, rgba(0, 0, 0, 0.952) 100%) !important;
    position: relative;
    border-radius: 6px;
    border:1px solid white;
}

.fg-item:hover{
    -webkit-box-shadow: 0 4px 8px 0 rgba(5, 17, 108, 0.2);
    box-shadow: 0 4px 8px 0 rgba(5, 17, 108, 0.2);
    -webkit-transition: all 300ms linear;
    -moz-transition: all 300ms linear;
    -ms-transition: all 300ms linear;
    -o-transition: all 300ms linear;
    transition: all 300ms linear;
}

.fg-img {
    /**
     * Makes images undraggable.
     */
    user-select: none;
    /**
     * Lets widths of images fit their parents (<a>s)
     */
    width: 100%;
    /**
     * Eliminates paddings images below images.
     */
    /*display: block;*/
    /**
     * Equivalent to "display: block;"
     */
    vertical-align: middle;
    opacity: 0.8;
}
.fg-text {
	font-size: 15px;
	font-family: 'open_sansregular';
    position: absolute;
    left: 0.5em;
    bottom: 0.5em;
    z-index: 2;
    color: #7ac142;
    padding: 5px 10px;
    border-radius: 5px;
}

#container > div.fg-item:first-child span.fg-text{
    opacity: 1 !important;
    transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1) !important;
}

#description{
    margin: 0px auto;
    width: 600px;
    text-align: center;
    font-size: 18px;
    padding-bottom: 16px;
    color: #7ac142;
    font-family: 'open_sanslight';
}

.poweredBy{
    color: #7ac142;
    margin: 0px auto;
    width: 200px;
    max-width: 100%;
    text-align: center;
    padding: 20px;
    font-family: 'open_sanslight';
}

.poweredBy a{
    color: #ffffff;
    text-decoration: none;
    font-family: 'open_sanslight';
}
