* {
    box-sizing: border-box;
}

html {
    margin: 0;
    scroll-behavior: smooth;
}

body {
    background-image: url(img/kork_bulletin-board.jpg);
    background-size: cover;
}

.d-none {
    display: none !important;
}

.heading-section {
    display: flex;
    justify-content: center;
    align-items: center;
}

.heading {
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 305px;
    height: 120px;
    background-color: #FFFFA5;
    border-radius: 50px 30px;
    padding: 8px;
    margin: 16px;
    box-shadow: -10px 12px 4px rgba(0, 0, 0, 0.5);
    text-align: center;
}

.headingListAndTrash {
    width: 170px !important;
    height: 70px !important;
}

.board {
    display: flex;
    flex-wrap: wrap;
}

.listAndTrashIcon {
    background-color: #FFFFA5;
    border-radius: 20%;
    width: 80px;
    padding: 1%;
    cursor: pointer;
    box-shadow: -3px 7px 4px rgba(0, 0, 0, 0.5);
}

.icon:hover {
    background-color: #eee29d;
    padding: 0.9%;
}

.input-section {
    display: flex;
    justify-content: center;
}

.txt-area {
    background-color: white;
    width: 305px;
    box-shadow: -10px 12px 4px rgba(0, 0, 0, 0.5);
    border-radius: 50px 30px;
}

.checkMark {
    width: 28px;
    height: auto;
    margin: 16px;
    cursor: pointer;
}

.checkMark:hover {
    width: 32px;
    height: auto;
}

.inputarea {
    margin: 16px;
    width: 200px;
    height: 200px;
    font-size: 1.1rem;
    border: none;
    resize: none;
    padding: 16px;
    border-radius: 50px 30px;
}

.note {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 200px;
    height: 200px;
    background-color: #FFFFA5;
    padding: 8px;
    border: solid 1px black;
    margin: 16px;
    box-shadow: -10px 12px 4px rgba(0, 0, 0, 0.5);
    font-size: 1.1rem;
}

.deleteButtonList {
    display: flex;
    justify-content: flex-end;
}

.deleteButton {
    display: flex;
    justify-content: space-between;
}

.trashIcon {
    cursor: pointer;
    height: 30px;
    width: 30px;
    object-fit: cover;
}

.loeschenButton {
    width: 200px;
    height: 32px;
    margin: 16px;
    box-shadow: -10px 12px 4px rgba(0, 0, 0, 0.5);
}