.lessonContentBorder {
    border: 1px solid #151515;
    border-radius: 5px;
    padding: 15px;
}

ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0px;
}

ul li {
    list-style-type: none;
    margin-bottom: 8px;
}

ul * {
    margin-left: 5px;
    margin-right: 5px;
}

.removeItem {
    background-color: tomato;
}

.removeItem:hover {
    background-color: rgb(248, 90, 62);
}

.removeItem:active {
    background-color: rgb(253, 64, 31);
}