body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	background-color: rgba(200, 225, 225, 1.0);
    background-image: url('background.png');
    background-size: 20%;
    background-repeat: repeat;
    filter: blur(2px); /* Unscharfeffekt nur auf den Hintergrund anwenden */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    position: relative; /* Position relativ setzen, um über den unscharfen Hintergrund zu liegen */
    z-index: 2; /* Sicherstellen, dass der Container über dem unscharfen Hintergrund liegt */
}

main {
    text-align: center;
}

.logo-container img {
    width: 300px; 
    height: 300px; 
    border-radius: 50%;
}

.content-box {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
    max-width: 700px; /* Maximale Breite */
    margin: 0 auto; /* Zentrierung der content-box */
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    padding: 10px 20px;
    text-align: center;
    z-index: 1; /* Den Footer über den unscharfen Hintergrund legen */
}
