body {
    font-family: Arial, sans-serif;
}

.container {
    display: flex;
    justify-content: space-between;
    padding: 50px;
}

.box {
    width: 30%;
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 10px;
    box-shadow: 2px 2px 12px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
    max-height: 80vh;
}

h2 {
    text-align: center;
}

button {
    display: block;
    margin: 10px auto;
    padding: 5px 10px;
}

.tasks {
    margin-top: 10px;
}

.task {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f9f9f9;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 10px;
    cursor: pointer;
}

.task span {
    flex: 1;
    margin-left: 10px;
}

.task button {
    margin-left: 5px;
}

.task-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.task-popup .close-btn {
    cursor: pointer;
    color: red;
    font-size: 20px;
    position: absolute;
    top: 10px;
    right: 10px;
}

.copyright {
    text-align: center;
    padding: 5px;
    background-color: #32304c;
    position: fixed;
    left:-10px;
    bottom: 0;
    width: 100%;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    color:white;
}

.home{
    border-radius:60%;
}
