html, body {
    height: 100%;
    padding: 0;
    margin: 0;
}

.page {
    position: relative;
    display: table;
    table-layout: fixed;
    width: 100%;
    height: 100%;
    line-height: normal;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.1em;
    color: #ffffff;
    background: #f0f0f0 url("index_background_noir.png") no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
}

h1, h2, h3, h4, h5 {
    line-height: 1.3;
    font-weight: normal;
}

.bg-position-top { background-position: 50% 0; }
.bg-position-middle { background-position: 50% 50%; }
.bg-position-bottom { background-position: 50% 100%; }

img {
    max-width: 100%;
    height: auto;
}

a, a:link {
    color: inherit;
    opacity: 0.85;
    transition: opacity 0.3s ease-in-out;
}

a:hover, a:focus, a:active {
    opacity: 1;
}

ul, ol {
    display: inline-block;
    text-align: left;
    max-width: 50%;
}

.container {
    position: relative;
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding: 1em 2em;
    z-index: 1;
}

.content {
    max-width: 900px;
    margin: 0 auto;
}

.social-links:empty {
    outline: 1px solid yellow;
}

.social-links {
    padding: 1em 0;
    vertical-align: middle;
}

.social-links a {
    padding: 0 0.3em;
    line-height: normal;
}

.hosting-info {
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1em;
    font-size: 0.8em;
	z-index: 10; /* Erhöht, um sicherzustellen, dass es über anderen Inhalten liegt */
	pointer-events: auto; /* Stellt sicher, dass Klicks registriert werden */
	}

.hosting-info p {
    margin: 0;
    padding: 0;
    font-size: 12px;
}

@media screen and (max-width: 640px) {
    h1 { font-size: 2em; }
    ul, ol { max-width: none; }
    .page { min-width: 300px; }
    .container { padding: 3em; }
}

@media screen and (min-width: 641px) and (max-width: 1199px),
       (min-height: 500px) and (max-height: 1199px) {
    body.debug:after { content: "medium"; }
}

@media screen and (min-width: 1200px) {
    body.debug:after { content: "large"; }
}

.hidden {
    display: none;
}

button {
    background: transparent;
    color: #ffffff;
    border: none;
	border-radius: 50%;
    padding: 15px 30px;
    cursor: pointer;
    text-decoration: underline;
    font-size: 1em;
    opacity: 1;
    transition: opacity 0.3s ease, box-shadow 0.3s ease;
}

button:hover {
    opacity: 1;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

body.debug:after {
    content: "default";
    position: fixed;
    left: 0;
    bottom: 0;
    background-color: white;
    color: black;
    padding: 0.5em;
    font-size: 10px;
    text-transform: uppercase;
    display: none;
}