body {
    font-family: Arial, sans-serif;
    background: black;
    height: 100vh;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container {
    text-align: center;
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.orgname {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    size: 26px;
    color:#fff;
    margin-top: 15px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.icon {
    width: 100%;
    height: 100%;
    animation: rotate 5s infinite linear, fadeIn 2s forwards;
}


#impressumLink {
    margin-top: 30px;
    color: gray;
    text-decoration: none;
    font-size: 11px;
    cursor: pointer;
}

#impressumLink:hover {
    text-decoration: underline;
}

.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.popup-content {
    background-color: #fff;
    padding: 20px;
    width: 300px;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: none;
    border: none;
    cursor: pointer;
}
