@import url('https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script&display=swap');

html {
    width: 100%;
}

body {
    background-color: #f5f4f0;
    color: #2d2b31;
    width: 100%;
    margin: 0px;
}

header {
    text-align: center;
    font-family: 'PT Sans', sans-serif;
    font-size: 28pt;
    font-weight: bold;

    height: 196px;
    background-image: url(header.jpg);
    background-repeat: no-repeat;
    background-position: center;
    /*background-color: darkgreen;*/

    margin-bottom: 50px;
}
header div.title {
    /*background: rgba(255,255,255,0.6);*/
    text-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
    width: 100%;
    height: 100%;
    text-align: center;
    line-height: 196px;
}
header div.ztr {
    position: absolute;
    top:150px;left:50%;
    width: 845px;
    margin-left: -423.5px;
    padding-left: 50px;
    text-align: right;
}
header div.ztr img {
    width: 100px;
}
@media only screen and (max-device-width:1000px){
    header div.title {
        line-height: 28pt;
    }
    header div.title span {
        display: inline-block;
        margin-top: 15%;
    }
    header div.ztr {
        left: auto;
        right: 0px;
        margin-left: 0;
        padding-left: 0;
        width: 100px;
        margin-right: 5vw;
    }
}

main {
    width: 100%;
}

.row {
    width: 50%; /* desktop */
    margin-left: 25%; /* desktop */
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    font-family: 'PT Sans', sans-serif;
}
@media only screen and (max-device-width:1000px){
    /* mobile */
    .row {
        width: 100%;
        margin-left: 0;
    }
    .row.col-no-mobile {
        display: block;
    }
}

.col {
    width: 50%; /* desktop */
    flex: 1 1 auto;
    text-align: center;
    font-family: 'PT Sans', sans-serif;
}
.col img {
    max-width: 60%; /* desktop */
    -webkit-box-shadow: -5px 5px 16px -4px #2D2B31;
    box-shadow: -5px 5px 16px -4px #2D2B31;
}
.col img.no-shadow {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}
.col h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 20pt;
}
@media only screen and (max-device-width:1000px){
    /* mobile */
    .col.img {
        width: 30%;
    }
    .col img {
        max-width: 100%;
    }
    .col.txt {
        width: 70%;
    }
    .col.no-mobile {
        width: 100%;
        flex: initial;
    }
    .col.no-mobile img {
        width: 80%;
        margin: 20px;
    }
    .col.hide-mobile {
        display: none;
    }
}
.single-col {
    width: 845px;
    margin: 0 auto;
}

.gallery {
    width: 50%; /* DESKTOP */
    margin-left: 25%; /* DESKTOP */
    margin-top: 20px;
    margin-bottom: 20px;
}
.gallery .r {
    display: flex;
}
.gallery .r .c {
    flex: 1;
    width: 100px;
    padding: 10px;
}
.gallery .r .c img {
    max-width: 100%;
}
@media only screen and (max-device-width:1000px){
    .gallery {
        width: 100%;
        margin-left: 0;
    }
    .gallery .r .c {
        width: 25%;
    }
}

h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 25pt;
}
h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 21pt;
}


a {
    color: inherit;
    text-decoration: none;
}

footer {
    position: fixed; bottom: 0;
    width: 100%;
    text-align: left;
    font-size: 12pt;
}
footer a {
    color: inherit;
    text-decoration: none;
}
