body {
    font-family: 'font1', Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.titelbild {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    animation: zoomIn 2s ease-in; /* Animation: Name, Dauer, Timing-Funktion */
}

.titel {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    }

@keyframes zoomIn {
    0% { 
        transform: scale(1.1); /* Start: leicht vergrößert */
        opacity: 0; /* unsichtbar */
    }
    100% { 
        transform: scale(1); /* Ende: normale Größe */
        opacity: 1; /* sichtbar */
    }
}

main {
    padding: 20px;
}

nav {
    margin-top: 20px;
}

a {
    text-decoration: none;
    color: #007BFF;
    margin: 0 10px;
}

a:hover {
    text-decoration: underline;
}

@font-face {
    font-family: 'font1';
    src: url('bell_regular-webfont.woff2') format('woff2'),
         url('bell_regular-webfont.woff') format('woff'),
         url('bell_regular-webfont.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

.button {
  background-color: #04292d;
  color: #ddc198;
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  display: inline-block;
  font-weight: bold;
}

.button:hover {
  background-color: #063d43;
}

.leistungen {
    text-align: center;
    margin: 40px 0;
}

.spalten-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 0 20px;
}

.spalte {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: #f4f4f4;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    display: block;
    margin-left: auto;
    margin-right: auto;
	color: #063d43; /* ← bestimmt die Farbe */
}