body, html {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden; /* Verhindert Scrollbars, die durch den Canvas entstehen könnten */
}

canvas {
    position: fixed; /* Damit der Canvas den gesamten Hintergrund bedeckt */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Stellt sicher, dass der Canvas hinter der Applikation liegt */
}

#app {
    position: relative; /* Oder eine andere Positionierung, die für deine Applikation sinnvoll ist */
    z-index: 2; /* Stellt sicher, dass die Applikation über dem Canvas liegt */
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

#level-description {
    margin-bottom: 20px;
    font-size: 18px;
    color: #333;
}

#image-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 20px;
}

#image-selection img {
    cursor: pointer;
    margin: 5px;
    width: 80px;
    height: 80px;
    border: 3px solid transparent;
    border-radius: 4px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

#image-selection img:hover, #image-selection img.selected {
    transform: scale(1.1);
    border-color: #007bff;
}

#password-area {
    margin-bottom: 20px;
    margin-right: 20px;
}

#password-input {
    width: 100%;
    padding-left: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    border: 2px solid #007bff;
    border-radius: 4px;
    font-size: 16px;
    color: #333;
}

button#next-level {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin-bottom: 20px;
}

button#next-level:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

#feedback {
    font-size: 16px;
    color: #d9534f;
    text-align: center;
    margin-top: 20px;
    font-weight: bold;
}

#next-level, #submit-password {
    display: block;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    font-size: 18px;
    cursor: pointer;
}

#password-strength {
    margin-top: 20px;
}

#password-strength-meter {
    width: 100%;
}

#password-strength-text {
    display: block;
    text-align: center;
}

#copyright {
    margin-top:20px;
    align-items: center;
    text-align: center;
}

#editor-buttons i {
    font-size: 40px;
    color:#4582ff;
}

#editor-buttons button {
    background: none;
    border: none;
    cursor: pointer;
}

#copy-password-button {
    margin-top:20px;
    width: 100%;
}