#main h2 {
    margin-top: 13%;
    font-size: 50px;
}

.tasks {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
}

table {
    width: 70%;
    border-collapse: collapse;
    background: white;
}

th, td {
    padding: 10px;
    height: 50px;
    border: 1px solid #ddd;
    text-align: left;
}

td:nth-child(2) {
    width: 15%;
    text-align: center;
}

th {
    background: #333;
    color: white;
    text-align: center;
}

.hidden {
    display: none;
}

#toggleBtn {
    margin-top: 2%;
    margin-bottom: 5%;
    width: 100px;
    cursor: pointer;
    padding: 15px 20px;
    border: 1px solid rgba(136, 201, 221, 0.418);
    border-radius: 5px;
    background-color: rgba(161, 227, 247, 0.575);
    transition: 0.3s;
}

#toggleBtn:hover {
    background-color: rgb(124, 217, 245);
    transform: scale(1.05);
}