/* TASKS */

.paper {
    background: #fff;
    padding: 30px;
    position: relative;
}

.paper,
.paper::before,
.paper::after {
    /* Styles to distinguish sheets from one another */
    box-shadow: 1px 1px 1px rgba(0,0,0,0.25);
    border: 1px solid #bbb;
}

.paper::before,
.paper::after {
    content: "";
    position: absolute;
    height: 95%;
    width: 99%;
    background-color: #eee;
}

.paper::before {
    right: 15px;
    top: 0;
    transform: rotate(-1deg);
    z-index: -1;
}

.paper::after {
    top: 5px;
    right: -5px;
    transform: rotate(1deg);
    z-index: -2;
}

.task-menu
{
    background-color: #f5f5f5;
    margin-left: 15px;
    margin-right: -20px;
    margin-top: -20%;
    padding-top: 22%;
    border: 2px solid lightgrey;
}
@media (max-width: 600px) {
    .task-menu {
        margin-left: 0px;
        margin-right: 0px;
        padding-top: 20px;
        margin-top: -10px;
    }
}