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

.container {
    text-align: center;
    background-color: #1e1e1e;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    width: 80%;
    max-width: 800px;
}

h1 {
    margin: 0 0 20px;
    font-size: 2em;
    color: #fff;
    padding-bottom: 10px;
    border-bottom: 1px solid #333 ;
}

.app-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.app-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    border-bottom: 1px solid #333;
}

.app-icon {
    width: 100px;
    height: 100px;
    margin-right: 20px;
}



.app-name {
    font-size: 1.4em;
    color: #f0f0f0;
    flex-grow: 1;
    text-align: left;
}

.app-email {
    color: #007BFF;
    text-decoration: none;
}

.app-email:hover {
    text-decoration: underline;
}

/* Responsive Design für verschiedene Breakpoints */

/* Tablets und größere Smartphones im Hochformat */
@media (max-width: 768px) {
    .container {
        width: 90%;
        padding: 15px;
    }
    
    .app-icon {
        width: 80px;
        height: 80px;
        margin-right: 15px;
    }

    .app-name {
        font-size: 1.2em;
    }

    .app-email {
        font-size: 0.9em;
    }
}

/* Kleine Smartphones */
@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 10px;
    }
    
    .app-icon {
        width: 70px;
        height: 70px;
        margin-right: 0;
        margin-bottom: 10px;
    }

    .app-name {
        font-size: 1em;
        margin-bottom: 5px;
    }

    .app-email {
        font-size: 0.8em;
    }
}

/* Große Bildschirme */
@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }

    .app-icon {
        width: 120px;
        height: 120px;
        margin-right: 25px;
    }

    .app-name {
        font-size: 1.6em;
    }

    .app-email {
        font-size: 1em;
    }
}
