/* Grundlegendes CSS-Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Playwrite NZ", cursive;
    font-size: 16px;
    color: #333;
    background-color: #f8f8f8;
    line-height: 1.6;
    padding: 20px;
}

/* Schriftarten */

.playfair-display-FONT1> {
  font-family: "Playfair Display", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.playwrite-nz-FONT2 {
    font-family: "Playwrite NZ", cursive;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
  }
  


/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: white;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
}

/* Typografie */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 10px;
    font-family: "Playfair Display", serif;
}

p {
    margin-bottom: 10px;
}

/* Navigation */
nav {
    background: #f8f8f8;
    max-width: 1000px;
    font-size: 24px;
    margin: 0 auto;
    border-bottom: 2px solid black;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: space-around;
}

nav ul li {
    display: inline;
}

nav ul li a {
    font-family: "Playfair Display", serif;
    color: rgb(0, 0, 0);
    text-decoration: none;
    padding: 5px;
    display: block;
}

nav ul li a:hover {
   text-decoration: underline #575757;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 10px 15px;
    background: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s ease;
}

.button:hover {
    background: #0056b3;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background: #ededed;
    color: rgb(0, 0, 0);
    margin-top: 20px;
}

.footer-infos {  
    float: left;  
    padding-right: 20px
    }  
      
    .footer-data {  
    float: right ; 
    padding-left: 20px;
    align-items: top;
        }

.flex {
display: flex;
justify-content: center;
align-items: center;
}

.flex_text {
    text-align: center;
    font-size: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    }

.flex_img {
        max-height: 450px;
        margin-top: 40px;
        object-position: 50% 50%;
        object-fit: cover;
        justify-content: center;
        align-items: center;
        overflow-clip-margin: content-box;
        overflow: clip;
}
.card{
        display: flex;
        object-position: 50% 50%;
        object-fit: cover;
        justify-content: center;
        align-items: center;
        overflow-clip-margin: content-box;
        overflow: clip; 
}
