@font-face {
    font-family: Forever_Brush_Script;
    src: url("../fonts/Forever_Brush_Script.otf");
}

@font-face {
    font-family: Playlist_Script;
    src: url("../fonts/Playlist_Script.otf");
}

@font-face {
    font-family: Lato;
    src: url("../fonts/Lato-Regular.ttf");
}

:root {
    --pinkisch: #f9cdcd;
    --pink: #c51356;
}

body {
    font-family: Lato;
}

.fancyFont {
    /*font-family: Forever_Brush_Script;*/
    font-family: Playlist_Script;
}

.h1 {
    font-size: 100px;
}

.h2 {
    font-size: 80px;
    margin: 10px 0 10px 0;
}

.h3 {
    font-size: 60px;
}

.h4 {
    font-size: 40px;
}

.h5 {
    font-size: 20px;
}

.text-pinkisch {
    color: var(--pinkisch);
}

.text-pink {
    color: var(--pink);
}

.colorBlock {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: var(--pinkisch);
    color: #222;
}

.whiteBlock {
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: white;
    /*color: var(--pinkisch);*/
}

/*              SPECIAL                 */

.navbar {
    background-color: var(--pinkisch) !important;
}

.navbar a {
    color: white !important;
}

@keyframes darken {
    from {
        color: white;
    }
    to {
        color: gray;
    }
}

@keyframes lighten {
    from {
        color: gray;
    }
    to {
        color: white;
    }
}

.firstImg {
    background-image: url("../img/header-crop.jpeg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    height: 100%;
    /*width: 100%;*/
    color: #fff;
}

.textbox {
    padding-top: 20vh;
    color: white;
    width: 100%;
}

.infobox {
    position: absolute;
    bottom: 10%;
    width: 100%;
}

.up {
    top: -10px;
}

.clock-box {
    padding-top: 60px;
    padding-bottom: 60px;
    max-width: 700px;
}

.clock {
    display: inline-block;
    margin: 40px auto 0 auto;
    /*margin-top: 40px;*/
}

.columns {
    -webkit-column-count: 2; /* Chrome, Safari, Opera */
    -moz-column-count: 2; /* Firefox */
    column-count: 2;
    -webkit-column-gap: 10%; /* Chrome, Safari, Opera */
    -moz-column-gap: 10%; /* Firefox */
    column-gap: 10%;
    /*column-rule-color: #ccc; !* Optional *!*/
    /*column-rule-style:solid; !* Optional *!*/
    /*column-rule-width: 1px; !* Optional *!*/
    text-align: justify; /* Optional */
}

.heart_1 {
    padding: 75px 0px;
    margin: 20px;
    background-image: url("../img/heart_1.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.heart_2 {
    padding: 75px 0px;
    margin: 20px;
    background-image: url("../img/heart_2.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

.heart_3 {
    padding: 75px 0px;
    margin: 20px;
    background-image: url("../img/heart_3.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center center;
}

#txt {
    border: none;
    padding-left: 5px;
    padding-right: 5px;
}

#instagram a img {
    width: 200px;
    height: 200px;
}

#but {
    border: none;
    position: relative;
    left: -5px;
    /*width: 10px;*/
    background-color: #fff;
}

#but:hover {
    background-color: #ccc;
}

.circle {
    background: #fff;
    border-radius: 50%;
    height: 175px;
    width: 175px;
    margin: auto;
}

.circle span {
    position: relative;
    top: 40px;
}

.gallery {
    column-count: 2;
    column-gap: 1em;
}

.foto-block {
    /*background-color: none;*/
    display: inline-block;
    margin: 0 0 1em 0;
    width: 100%;
    cursor: pointer;
    overflow: hidden;
}

.foto-block img {
    /*max-width: 100%;*/
    /*height: auto;*/
    width: 100%;
    margin-bottom: -4px;
    transition: transform 0.5s;
}

.foto-block img:hover {
    transform: scale(1.1);
}

.fotoText-block {
    margin: 30px 0 10px 0;
}

@media (min-width: 600px) {
    .gallery {
        column-count: 3;
    }
}

@media (min-width: 1000px) {
    .gallery {
        column-count: 4;
    }
}

#foto-overlay-container {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.9);
    text-align: center;
}

#foto-frame {
    margin: 5% auto;
    margin-bottom: 20px;
    height: 80%;
}

#foto-frame .button {
    display: inline-block;
    height: 100%;
    width: 100px;
    text-align: center;
    position: relative;
    top: 0px;
    transition: background-color 0.2s;
}

#foto-frame .button:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

#foto-prev {
    right: -105px;
}

#foto-next {
    left: -105px;
}

#foto-frame .button span {
    font-size: 50px;
    color: #fff;
    font-weight: bolder;
    /*margin: 10px;*/
}

#foto-frame img {
    display: inline-block;
    height: 100%;
    width: auto;
    max-width: 77%;
    /*margin: auto;*/
}

#foto-link {
    /*position: fixed;*/
    bottom: 50px;
    /*left: 50%;*/
}