
* {
    padding: 0;
    margin: 0;

}


body {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
    background: linear-gradient(rgba(0,0,0,0.3),rgba(0,0,0,0.3)),url('./background.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.todo-app {
    min-width: 20rem;
    height: auto;
    padding: 40px;
    background: rgba(255, 255, 255,0.2);
    backdrop-filter: blur(3px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

.add-section {
    display: flex;
    gap: 10px;
    align-items: start;
}

textarea {
    color: rgb(54, 54, 54);
    margin: 0px;
    outline: none;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    resize: none;
    padding: 5px 10px;
    background: rgba(255, 255, 255,0.5);

}
input {
    color: rgb(54, 54, 54);
    background: rgba(255, 255, 255,0.5);
    padding: 10px 20px;
    border-radius: 5px;
    outline: none;
    border: none;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
}

input[type="checkbox"] {
    height: 15px;
    width: 15px;
}

button {
    color: rgb(54, 54, 54);
    background: rgba(255, 255, 255,0.5);
    padding: 12px 35px;
    border: none;
    border-radius: 5px;
    
}

table {
    border-collapse: collapse;
    color: rgb(235, 235, 235);
}

th,td {
    padding: 10px;
    border: 1px solid white;
    text-align: center;
}
.delete-btn {
    width: 50%;
    align-self: flex-end;
}
