/* Fira Sans lokal einbinden */
@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/FiraSans-Regular.woff2') format('woff2'),
         url('fonts/FiraSans-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Fira Sans';
    src: url('fonts/FiraSans-Bold.woff2') format('woff2'),
         url('fonts/FiraSans-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
}

/* Basis-Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: 'Fira Sans', sans-serif;
}



.background {
    background-image: url('background.jpg'); /* Dein Hintergrundbild */
    background-size: cover;  /* Bild auf die gesamte Bildschirmgröße anpassen */
    background-position: center center;  /* Bild zentrieren */
    background-attachment: fixed;  /* Hintergrund bleibt beim Scrollen fixiert */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.container {
    text-align: center;
    padding: 30px 25px 10px 25px;
    margin: 15px;
    background-color: rgba(255, 255, 255, 1); /* Durchsichtiges Hintergrund für besseren Kontrast */
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 700px;
    width: 100%;
}

.logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
}

.address {
    font-size: 20px;
    color: #555555;
}

.email-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E01111;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.email-button:hover {
    background-color: darkgrey;
}

/* Responsives Design */
@media (max-width: 600px) {
    .container {
        width: 90%;
    }
}
