* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}

html, body {
    width: 100%;
    overflow-x: hidden; /* Verhindert horizontales Scrollen */
	background: url();
	background: white;
	background-size: cover;
	background-position: center;
}

h1 {
    font-size: 6em;
    text-align: center;
    color: rgba(255, 255, 255, .8);
}

.parallax-1, .parallax-2, .parallax-3, .parallax-4, .parallax-5 {
    height: 50vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

}

.parallax-1 {
    background-image: url('img/4.jpg');
}

.parallax-2 {
    background-image: url('img/5.jpg');
}

.parallax-3 {
    background-image: url('img/1.jpg');
}

.parallax-4 {
	background-image: url('img/2.jpg');
}

.parallax-5 {
	background-image: url('img/3.jpg');
}

.parallax-inner {
	text-align: center;
	padding: 10% 0;
    width: 100%; /* Sicherstellen, dass die Breite nicht überschritten wird */
}

.parallax-inner h1 {
	font-size: 6em;
}

h2 {
    font-size: 3em;
    color: bisque;
    text-align: center;
    font-weight: 300;
    letter-spacing: 2px;
    margin: 20px 0 10px;
}

p {
    font-size: 16px;
    color: black;
    text-align: center;
    line-height: 30px;
    margin: 0 50px 40px;
}

p:nth-of-type(2),
p:nth-of-type(3) {
    margin: 40px;
}


.section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px; /* Abstand zwischen den Boxen */
}

.info-box {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    width: calc(50% - 10px); /* 50% Breite minus Abstand */
}

.info-box h2 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.info-box p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .section {
        flex-direction: column;
        gap: 10px;
    }

    .info-box {
        width: 100%; /* Volle Breite auf kleinen Bildschirmen */
    }

    .parallax-inner h1 {
        max-width: 100%; /* Sorgt dafür, dass das h1 nicht rechts abgeschnitten wird */
        font-size: 4em; /* Beispiel für die Anpassung der Schriftgröße auf kleinen Bildschirmen */
        text-align: center; /* Zentriert den Text horizontal */
    }
	
}


.text-columns {
    display: flex;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px;
}

.column {
    flex: 1;
    padding: 0 20px;
}

.column h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.column p {
    font-size: 1em;
    line-height: 1.6;
}