* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins';
}

body {
    padding: 10px;
}

.container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.addNote-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 200px;
    border: 1px dashed gray;
    height: 150px;
    cursor: pointer;
}

.icon-plus {
    padding: 0 14px;
    border: 1px solid;
    width: fit-content;
    border-radius: 50%;
    font-size: xx-large;
}

.content {
    display: contents;
}

textArea {
    padding: 5px;
    padding-top: 14px;
    outline: none;
    resize: none;
    border: none;
    background-color: transparent;
    font-size: 20px;
    width: 200px;
    height: 150px;
}

textArea::-webkit-scrollbar {
    width: 4px;
}

textarea::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background: #4B4453;
}

.item {
    position: relative;
    width: 200px;
    height: 150px;
}

.remove {
    position: absolute;
    right: 6px;
    cursor: pointer;
    color: #fff;
}