body {
    font-family: sans-serif;
    padding: 2rem;
}

form {
    margin-bottom: 1rem;
}

h2 {
    text-align: center;
}

.board {
    display: flex;
    flex-direction: row;
    gap: 1rem;
}

.column {
    flex: 1;
    flex-direction: column;
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 8px;
}

.task p {
    margin: 0.3rem 0;
}

.task {
    background: white;
    position: relative;
    padding: 0.5rem;
    margin: 0.5rem 0;
    border-radius: 4px;
}

.modify-button {
    background: rgb(96, 180, 248);

    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.delete-button {
    background: rgb(255, 98, 98);

    position: absolute;
    right: 3.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.add-button {
    background: rgb(252, 255, 98);

    position: absolute;
    right: 7.5rem;
    top: 50%;
    transform: translateY(-50%);
}

.task-create {
    background: rgb(161, 255, 161);
}