body {
    margin: 0;
    padding: 0;
    background-image: url(img/bg_body.png); /* Hintergrundbild-URL hier einfügen */
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    background-color: rgba(255, 255, 255, 0.8);
    max-width: 50%;
	min-width: 40%;
    padding: 20px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    color: #0F2745;
}

.logo {
    width: 60%;
    margin: 0 auto 100px; /* Horizontale Zentrierung des Logos im Container */
}

.hinweis {
    max-width: 90%;
    margin: 0 auto;
}

.frame {
    padding: 20px;
    border: 2px solid #368DA2;
    background: rgba(255, 255, 255, 0.3);
    width: 80%;
}

.frame p span {
    font-weight: 500;
}

h1 {
    font-size: 2.5em;
    font-family: azo-sans-web, sans-serif;
    font-weight: 500;
    font-style: normal;
    text-align: left;
}

p {
    font-size: 1.5em;
    font-family: azo-sans-web, sans-serif;
    font-weight: 300;
    font-style: normal;
    text-align: left;
}

@media (max-width: 768px) {
    .container {
        min-width: 98%;
    }

    .logo {
        max-width: 100%;
		min-width: 90%;
        margin: 0;
    }

    .logo img {
        width: 100%; /* Hinzugefügt: Um sicherzustellen, dass das Bild die volle Breite nutzt */
        height: auto; /* Hinzugefügt: Damit das Bild das Seitenverhältnis beibehält */
		margin-top: 120px;
		margin-bottom: 10px;
    }

    .frame {
        width: 90%;
    }
	
	.hinweis {
        margin-top: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    p {
        font-size: 1.2em;
    }
}

@media (min-width: 800px) and (max-width: 1200px) {
	.container {
        width: 100%;
    }
	
	.logo {
        max-width: 100%; /* Vollständige Breite für das Logo auf Mobilgeräten */
        min-width: 90%;
		margin: 0;
    }
	
	.logo img {
        width: 100%; /* Hinzugefügt: Um sicherzustellen, dass das Bild die volle Breite nutzt */
        height: auto; /* Hinzugefügt: Damit das Bild das Seitenverhältnis beibehält */
		margin-top: 0px;
		margin-bottom: 20px;
    }
	
	.hinweis {
        margin-top: 20px;
    }




