html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100% - 50px); /* Footer-Höhe abziehen */
}

.content {
    text-align: center;
}

.content p {
    font-size: 24px;
    font-weight: bold;
}

footer {
    height: 50px;
    background-color: #f2f2f2;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 0;
    width: 100%;
}

footer a {
    text-decoration: none;
    color: #000;
}

.icon {
    width: 100px; /* Größe des Icons anpassen */
}