@font-face {
    font-family: 'Oswald Regular';
    src: url('font/oswald-v53-latin-regular.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald Bold';
    src: url('font/oswald-v53-latin-600.woff2') format('woff2');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Oswald Regular', sans-serif;
    background-image: url('background.jpg'); /* Hintergrundgrafik */
    background-size: cover; /* Stellt sicher, dass das Bild den gesamten Hintergrund bedeckt */
    background-position: center; /* Zentriert das Bild */
    background-repeat: no-repeat; /* Verhindert das Wiederholen des Bildes */
    color: #333333; /* Weißer Text für Kontrast */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    height: 100vh;
}

h1, h2, h3, h4, h5, h6, .bold-text {
    font-family: 'Oswald Bold', sans-serif;
}

h1 {
	font-size: 70px;
	color: #274055;
	margin: 50px 0 0 0; 
}

.trade-of-goods {
    font-size: 32px; /* Doppelt so groß wie die angenommene Standardgröße */
    margin: 0;
}


header {
    display: flex;
    flex-direction: column; /* Ändert die Ausrichtung von flex-Items zu einer Spalte */
    justify-content: center;
    align-items: center;
    padding: 20px;
}


#logo {
    max-width: 500px;
    height: auto;
}

main {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 5rem 0 5rem;
}

#kontaktdaten {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.8); /* Leicht transparenter weißer Hintergrund */
    color: #274055; /* Dunkler Text für die Kontaktdaten */
    padding: 50px 100px;
    margin: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Leichter Schatten für Tiefe */
}

footer {
    background-color: rgba(39, 64, 85, 0.9); /* Leicht transparenter dunkler Hintergrund */
    color: #ffffff;
    text-align: center;
    padding: 10px;
}

footer a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 10px;
}

@media (max-width: 600px) {
    header, footer {
        flex-direction: column;
    }

    #kontaktdaten {
        margin: 10px;
    }
}
