.lernkarten {
    height: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px;
}

.lernkarten .lernkarte {
    height: 100%;
    width: 100%;
    background: linear-gradient(135deg, #8fb5ff, #b9a6ff);;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    color: white;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.lernkarten .lernkarte .icon {
    font-size: 50px;
}

.lernkarten .lernkarte .titel {
    font-size: 24px;
    font-weight: bold;
}

.lernkarten .controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 90%;
}

.lernkarten .controls button {
    height: 40px;
    width: 40px;
    border-radius: 100%;
    border: none;
    cursor: pointer;
}

.lernkarten .controls button:hover {
    background-color: lightgray;
}