body {
    font-family: Arial, sans-serif;
    background-color: black;
    color: #00aa25;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    -moz-user-select: none;
    -khtml-user-select: none;
    user-select: none;
}

.container2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: transparent;
    padding: 20px;
    box-sizing: border-box;
    max-width: 1000px;
    width: 100%;
}

h1 {
    font-size: 3em; /* Größere Schriftgröße */
    margin-bottom: 0.5em;
}

p {
    font-size: 1.5em; /* Größere Schriftgröße */
    margin: 0.5em 0;
}

.glow {
    margin-top: 20px;
    max-width: 80%; /* Bild an Container anpassen */
    height: auto;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 170, 37, 0.6), 0 0 30px rgba(0, 170, 37, 0.4), 0 0 45px rgba(0, 170, 37, 0.2);
    transition: box-shadow 0.3s ease-in-out;
}

.glow:hover {
    box-shadow: 0 0 15px rgba(0, 170, 37, 0.6), 0 0 30px rgba(0, 170, 37, 0.4), 0 0 45px rgba(0, 170, 37, 0.2);
}

footer {
    position: fixed;
    bottom: 10px;
    left: 10px;
    font-size: 14px;
    color: gray;
}
