/* antic-didone-regular - latin */
@font-face {
    font-display: swap;
    /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
    font-family: 'Antic Didone';
    font-style: normal;
    font-weight: 400;
    src: url('fonts/antic-didone-v16-latin-regular.woff2') format('woff2');
    /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

.gwendolyn-regular {
    font-family: "Gwendolyn", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
  .gwendolyn-bold {
    font-family: "Gwendolyn", cursive;
    font-weight: 700;
    font-style: normal;
  }  


@import url('https://fonts.googleapis.com/css2?family=Rouge+Script&display=swap');

.rouge-script-regular {
    font-family: "Rouge Script", cursive;
    font-weight: 400;
    font-style: normal;
}


img:hover {
    border-radius: 0.5em;
    margin: 0.7em;
    filter: none;
    transform: scale(1.03);
}

img {
    border-radius: 0.5em;
    margin: 0.7em;
    filter: grayscale(70);
    transition: filter 0.3s ease, transform 0.2s ease;
}



.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1em;
    padding: 2em;
    justify-items: center;
}


body {
    background-color:#EBDEFC;
}

h1 {
    font-size: 50px;
    font-family: "Gwendolyn", cursive;
    text-align: center;
}


.footer {
    background-color: #000000;
    color: #EBDEFC;
    text-align: center;
    padding: 1.5em;
    font-family: 'Antic Didone';
    font-size: 16px;
    margin-top: 3em;
}

.footer a {
    color: #EBDEFC;
    text-decoration: underline;
}

.footer a:hover {
    color: #ffffff;
}


.navigation {

    display: flex;

    background-color: #000000
}



.navigation li {

    list-style-type: none;

}



.navigation a {

    padding: 2em;

    display: inline-block;

    color: #ffffff;

    text-decoration: none;
    font-family: 'Antic Didone';
}



.navigation a:hover,
#akt_tab {

    background-color:#EBDEFC;
    color: #000000
}

@media (max-width: 768px) {
    .navigation {
        flex-direction: column;
        align-items: center;
    }

    .navigation a {
        padding: 1em;
    }

    h1 {
        font-size: 40px;
    }
}