html {
    scroll-behavior: smooth;
}

body {
    margin: 0px;
    color: #222222;
    font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

.pswp-gallery {
    display: flex;
    margin: auto;
    flex-wrap: wrap;
    justify-content: space-between;
}

.pswp-gallery a {
    display: flex;
    align-items: center;
    margin: 10px;
}

.menuBar {
    padding-left: 10px;
    padding-right: 10px;
    background-color: white;
    bottom: auto;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    width: 100%;
    height: 70px;
    z-index: 1000;
    filter: drop-shadow(0px 5px 10px rgba(0, 0, 0, 0.3));
}

.menu {
    float: left;
}

.menu a {
    color: #222222;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin: 25px 25px 0px 0px;
}

a:hover {
    color: #767676;
    transition: color 0.2s;
}

a:visited {
    color: #222222;
}

.logo img {
    float: right;
}

.logo a {
    margin: 0px;
    padding-right: 25px;
    display: block;
}

.column {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.columnPadding {
    padding-top: 75px;
    padding-bottom: 75px;
    padding-left: 10px;
    padding-right: 10px;
}

.articleImage {
    /*background-attachment: fixed;*/
    height: 50vh;
    max-height: 1200px;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

.articleImage.img1 {
    background-image: url('./pics/content-image-1.jpg');
}

.articleImage.img2 {
    background-image: url('./pics/content-image-2.jpg');
}

.articleImage.img3 {
    background-image: url('./pics/content-image-3.jpg');
}

article {
    clear: both;
}

h2 {
    margin-top: 10px;
    margin-right: 20px;
}

.contactForm {
    margin: auto;
}

.contactForm input, .contactForm textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

footer {
    color: grey;
    background-color: #222222;
    min-height: 10vh;
    clear: both;
}

.footerContent {
    margin: auto;
}

@media screen and (max-width: 1000px) {    

    .contactForm input, .contactForm textarea {
        width: 400px;
    }

  }

@media screen and (max-width: 640px) {

    .articleImage {
        background-attachment: local;
    }

    /*

    .articleImage.img1 {
        background-image: url('./pics/content-image-1m.jpg');
    }
    
    .articleImage.img2 {
        background-image: url('./pics/content-image-2m.jpg');
    }
    
    .articleImage.img3 {
        background-image: url('./pics/content-image-3m.jpg');
    }

    */

  }

@media screen and (max-width: 420px) {
    .menu a {
        margin: 25px 5px 0px 0px;
        text-decoration: underline;
    }

    .pswp-gallery {
        flex-direction: column;
    }

    .pswp-gallery a {
        justify-content: center;
    }

  }

@media screen and (max-width: 360px) {
    .menu a {
        margin: 3px 0px 0px 0px;
        text-decoration: underline;
        display: block;
    }
  }