body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #2c2f3c;
    background-image: url('/img/backg.JPG');
    background-size: cover;
    background-position: center; /* Horizontale Zentrierung */
}

.container {
    text-align: center;
    margin-bottom: 60px; /* Platz für den Footer */
}

.button {
    background-color: #032141;
    color: #fff;
    padding: 15px 30px;
    margin: 10px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.button img {
    width: 30px;
    margin-right: 10px;
}

.button:hover {
    background-color: #0056b3;
}

footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: rgba(51, 51, 51, 0.588); /* Halbtransparente Hintergrundfarbe */
    color: #fff; /* Textfarbe des Footers */
    padding: 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    margin: 0;
}

.footer-content a {
    text-decoration: none; /* Entfernt unterstrichene Formatierung des Links */
}
