html {
    height: 100%;
}

body {
    max-height: 100%;
    margin: 0;
    padding-bottom: 6rem;
    font-family: Arial, sans-serif;
    background: #000;
}
.ph-headerbild {
	text-align: center;
    height: auto;
    max-width: 95%;
}

img {
vertical-align: bottom;
}

h1 {
	font-size:32px;
    text-align: center;
	padding: 32px 0px 35px 0px;
    color: #fff;
}

h3 {
	font-size: 1.40rem;
    display: block;
    margin-block-start: 0px;
    margin-block-end: 0px;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    color: #fff;
}

.ph-content {
    line-height: 1.2; /* Standard Zeilenabstand */
    max-width: 50%;
    margin: auto;
    padding: 0px 16px 0px 16px;
    color: #fff;
}

.ph-info {
    padding: 30px 0px 30px 0px;
}

.ph-datenschutzcontent {
    line-height: 1.2; /* Standard Zeilenabstand */
    max-width: 80%;
    margin: auto;
    padding: 0px 16px 0px 16px;
    color: #fff;
}

.ph-impressumcontent {
    line-height: 1.2; /* Standard Zeilenabstand */
    max-width: 55%;
    margin: auto;
    padding: 0px 16px 0px 16px;
    color: #fff;
}

.ph-card {
    padding-top: 15px;
    padding-bottom: 15px;
}

a {
    color:#fff;
    text-decoration: none;
}

a:hover { 
    background-color: gray;
	color: #fff;
}

.floating-btn {
    position: fixed;
    top: 20px; /* Abstand oben */
    right: 100px; /* Abstand rechts */
    z-index: 1000; /* Sicherstellen, dass er über anderen Elementen liegt */
    /* Styling für runde Form */
    border-radius: 50%;
    width: 100px;
    height: 60px;
}

.ph-footer {
    text-align: center;
    padding: 16px 16px 16px 16px;
}

/*------------------------------------
Media
-------------------------------------*/
@media (min-width: 1200px) {
	.floating-btn {
		position: fixed;
		top: 20px; /* Abstand oben */
		right: 20%; /* Abstand rechts */
	}
}

@media (min-width: 571px) and (max-width: 990px) {
    .ph-content {
        max-width: 100%;
        padding: 0px 16px 0px 16px;
     }
}

@media (max-width: 800px) {
	.floating-btn {
		position: absolute;
		top: 0px; /* Abstand oben */
		right: 0px; /* Abstand rechts */
	}
}	
	
@media (max-width: 570px) {
    .ph-content {
        max-width: 100%;
        margin: 5px;
        padding: 0px 16px 16px 16px;
     }

    .ph-impressumcontent {
    margin: auto;
    max-width: 100%;
    }
	
    .ph-datenschutzcontent {
    max-width: 100%;
    padding-left: 16px;
    }
    img {
    width: 80%;
	}
	
	.floating-btn {
		position: absolute;
		top: 60px; /* Abstand oben */
		right: 0px; /* Abstand rechts */
	}
	
}