﻿::selection {
    background-color: lightgoldenrodyellow;
    color: #222;
}

@font-face {
    font-family: 'din';
    src: url('../font/D-DIN.otf');
}

body, html {
    width: 100%;
    text-align: center;
    font-family: 'din', sans-serif;
    line-height: 20px;
}

div.content-wrapper {
    padding-top: 90px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

p {
    margin-top: 10px;
    margin-bottom: 10px;
}

h1, h2, h3, h4, h5, h6 {
    padding-top: 20px;
    padding-bottom: 20px;
}

div.section {
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
}

div.section ul {
    margin-left: 40px;
}

div.section-black {
    background-color: #222;
    color: #fff;
}

    div.section-black a:link,
    div.section-black a:active,
    div.section-black a:visited {
        color: #fff;
    }

div.section-black-seperator {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #222;
    margin: 0 auto;
    margin-top: -35px;
}

.img1 {
    width: 70%;
    margin: 20px;
    border-radius: 50%;
}

div.container {
    width: auto;
    max-width: 1100px;
    text-align: left;
    margin: 0px auto;
}

div.grid {
    display: grid;
    grid-template-columns: auto auto auto auto auto auto auto auto auto auto auto auto;
}

div.grid div {
    align-self: center;
}

div.header-wrapper {
    background-color: #222;
    color: #EEE;
    height: 90px;
    position: fixed;
    width: 100%;
    box-shadow: 0px 10px 20px #222;
}

div.header img {
    float: left;
    width: 250px;
    margin-top: 20px;
}

div.header div.header-items {
    float: right;
}



div.header div.header-items ul {
    margin-top: 31px;
    list-style-type: none;
}

    div.header div.header-items ul li a:link, 
    div.header div.header-items ul li a:active, 
    div.header div.header-items ul li a:visited {
        color: #fff;
        font-size: 15pt;
        padding: 15px;
        text-decoration: none;
    }

    div.header div.header-items ul li a:hover
    {        
        text-decoration: underline;
    }
div.content-wrapper {

}

div.footer-wrapper {
    padding: 10px;
    background-color: #222;
    color: #BBB;
    padding-top: 14px;
    margin-top: 50px;
}

div.footer {
    text-align: center;
}

div.gallery-2 {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-auto-rows: 1fr;
    width: 100%;
    grid-gap: 5px;
}

div.gallery-2 img {
    background-color: #F6F6F6;
    aspect-ratio: 1;
}

div.gallery-2 div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div.gallery {
    display: grid;
    grid-template-columns: 33.3% 33.3% 33.3%;
    grid-auto-rows: 1fr;
    width: 100%;
    grid-gap: 5px;
}

div.gallery img {
    background-color: #F6F6F6;
    aspect-ratio: 1;
}

div.gallery div img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

div.center {
    text-align: center;
}

.section-white a {
    color: #222;
}

#contact a {
    color: #222;
}

a.anchor {
    position: relative;
    top: -90px;
    visibility: hidden;
}

div.intro {
    display: grid;
    grid-template-columns: 50% 50%;
}

div#section-contact {
    margin-top: -50px;
}

#artworks img {
    cursor: pointer;
}

@media (max-width: 900px) {

    div.header-items {
        display: none;
    }

    div.intro {
        grid-template-columns: 100%;
    }

    div.container {
        text-align: center;
    }

    div.container ul {
        margin: 0;
        list-style-type: none;
    }

    div.container ul li {
        text-decoration: underline;
        padding: 3px;
    }

    div.gallery {
        margin-left: -5px;
    }

    div.gallery-2 {
        margin-left: -5px;
    }

    div.header img {
        float: none;
    }
}

