/*
Theme Name: Beeldbank
Theme URI: https://junnect.nl
Description: Beeldbank is een WordPress thema voor het maken van een merk content bibliotheek.
Author: JUNNECT
Author URI: https://junnect.nl
Version: 1.0
License: GNU General Public License
License URI: http://www.opensource.org/licenses/GPL-3.0

Beeldbank WordPress Theme, Copyright (C) 2022 JUNNECT
Beeldbank WordPress theme is licensed under the GPL.
*/

body {
    min-height: 100vh;
    background-color: #F5F0F0;
    color: #0f0f0f;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

.row {
    max-width:1200px;
    width: 85%;
    margin: 0 auto;
}

.logo {
    width: 80px; 
}

#header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

#menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap:25px;
}

a {
    color: #0f0f0f;
    text-decoration: underline;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
}

a:hover {
    color: #0f0f0f;
    text-decoration: none;
}

h1, h2, h3 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
    padding: 0;
}

footer {
}

.sectie {
    margin-bottom: 50px;
}

.sectie-title {
    margin-bottom: 25px;
}

.content-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 25px;
}

.file_tile {
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr;
    grid-template-areas: "image" "title";

}

.no-preview {
    height: 250px;
    background-color: grey;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media all and (max-width: 993px) {
    .file_tile img {
        height: 100%!important;
    }
    .no-previw: {
        height: 100%!important;
    }
}

.file_tile img {
    height: 250px;
}

.file_title {
    margin-bottom:5px;
}