body, html {
    margin: 0;
    padding: 0;
    font-family: "Outfit", sans-serif;
	font-weight: 400;
	font-style: normal;
	background-color: #000;
    color: #cccccc;
	width: 100%
}

h2, h3 {
	padding: 10px 5px 0px 25px;
}

p {
	padding: 0px 5px 0px 25px;
}

h2 {
	color: rgb(255, 200, 100);
}

a {
	font-size: 20px;
	color: orange;
}


.telefone {
	font-size: 20px;
	color: orange;
}

.important {
	font-weight: normal;
	color: orange;
}

.header {
    background-color: #333;
    color: #fff;
    padding: 20px;
    display: flex;
}

.text-content {
    margin-left: 20px;
}

.logo {
    height: 200px;
    width: auto;
}

@media (max-width: 600px) {
    .logo {
        max-width: 66%;
        height: auto;
		
    }
	
	.header-content {
		display: none;
	}
	
	#div1 {
		display: none;
	}
	
	.header img {
		margin: 0 auto;
	}
	
	
	body, html {
		width: 100%;
	}
		
	
}

.content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.content .content-divPicture {
    box-sizing: border-box;
    padding: 0px;
    border: none;
    
    width: 500px; /* Sie können diese Einstellung anpassen, um die Größe zu ändern */
    flex: 1 1 auto;
    margin: 0px;
	display: flex;       /* Flexbox Container */
	justify-content: center; /* Zentriert horizontal */
    align-items: center; /* Zentriert vertikal */
}

.content .content-divText {
    box-sizing: border-box;
    padding: 0px;
    border: none;
    text-align: left;
    width: 500px; /* Sie können diese Einstellung anpassen, um die Größe zu ändern */
    flex: 1 1 auto;
    margin: 0px;
}

.content .content-divPicture img {
    display: block;
    width: 60%; /* Ermöglicht dass das Bild die gesamte Breite des Elternelements einnimmt */
    height: auto; /* Ermöglicht automatische Höhenanpassung */
    border: none;
    margin: 0;
    padding: 0;
}

.footer {
    background-color: #222;
    color: #fff;
    text-align: center;
    padding: 0px;
    clear: both;
    position: relative;
    bottom: 0;
    width: 100%;
}