/* Background */
.background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bezirkslogo.png') no-repeat center center/cover;
    z-index: -1;
}

.msg {
    margin: 0 auto;
    width: 80%;
    height: 60px;
    text-align: center;
    vertical-align: middle;
    font-family: arial;
    font-size: 20px;
    color: white;
    background-color: #EC222D;
    border-radius: 10px;
    display: flex;
    justify-content: center; /* Horizontale Zentrierung */
    align-items: center; 
}