.summary-container {
    font-family: 'Inter';
    Padding: 50px 50px 50px 120px;
    position: absolute;
    top: 90px;
    left: 232px;
    right: 0px;
    bottom: 0;
}

.headline span:first-of-type {
    font-style: normal;
    font-weight: 700;
    font-size: 50px;
    line-height: 73.2px;
}

.headline span:last-of-type {
    font-family: 'Inter';
    font-style: normal;
    font-weight: 200;
    font-size: 20px;
    line-height: 32.4px;
}

.vertical-line-blue {
    width: 0px;
    height: 40px;
    border: 1.5px solid #29ABE2;
    border-radius: 10px;
    margin-left: 10px;
}

.summary-content {
    display: flex;
}

.task-menu-container {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 500px;
    gap: 20px;
}

.task-menu-container .row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 40px;
}

.task-menu-container .row>* {
    box-sizing: border-box;
    height: 130px;
    background-color: white;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
    display: flex;
    flex-direction: column;
    flex: 1 1 0px;
    padding: 20px;
    border-radius: 20px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

.task-menu-container .row>*:hover {
    background-color: #293646;
    color: white;
    transform: scale(1.1);
}

.task {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.task b {
    font-size: 55px;
    font-weight: 200;
}

.task span {
    text-align: center;
    font-size: 15px;
}

.upcoming-task {
    display: flex;
    flex-direction: row !important;
    justify-content: space-evenly;
    align-items: center;
}

.urgent-container {

    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.deadline-container {
    display: flex;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    text-align: left;
}

.deadline-container span {
    font-size: 12px;
}

.urgent-container div {
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
}

.urgent-container div b {
    font-size: 48px;
    font-weight: 200;
}

.urgent-container div span {
    font-size: 12px;
}

.urgent-icon {
    background-color: #ff3d00;
    color: white;
    border-radius: 100%;
    width: 50px;
    height: 50px;
    transform: rotate(180deg);
}

.todo-done {
    display: flex;
    flex-direction: row !important;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.todo-done:hover img {
    border: 1px solid white;
}

.todo-done div {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.todo-done div b {
    font-size: 55px;
    font-weight: 200;
}

.todo-done div span {
    text-align: center;
    font-size: 15px;
}

.todo-done img {
    background-color: #293646;
    width: 50px;
    height: 50px;
    border-radius: 100%;
}

.greeting {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-left: 10%;
}

.greeting span {
    font-size: 40px;
}

.greeting b {
    color: #29ABE2;
    font-size: 55px;
}


@media (max-width: 1300px) {
    .summary-container {
        top: 60px;
        left: 0px;
        right: 0px;
        bottom: 90px;
    }
}

@media (max-width: 1000px) {

    .greeting-hide {
        display: none;
    }

    .greeting span {
        font-size: 30px;
    }

    .summary-container {
        font-family: 'Inter';
        Padding: unset;
        height: 100vh;
        width: 100vw;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        position: unset;
    }

    .summary-content {
        flex-direction: column;
        gap: 50px;
    }

    .greeting {
        align-items: flex-start;
        margin: 0;
    }

    .greeting span {
        font-size: 30px;
    }

    .responsive-greeting {
        height: 100vh;
        width: 100vw;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 0;
        left: 0;
    }
}

@media (max-width: 600px) {
    .summary-container {
        position: unset;
        Padding: 60px 20px 90px 20px;
        width: 100vw;
        box-sizing: border-box;
    }

    .vertical-line-blue {
        width: 100px;
        height: unset;
        margin: 0;
        position: absolute;
        bottom: -20px;
        left: unset;
    }

    .task-menu-container .row>* {
        height: 120px;
        width: auto;
    }

    .task b {
        font-size: 43px;
    }

    .task span {
        font-size: 12px;
    }

    .todo-done div b {
        font-size: 43px;
    }

    .todo-done span {
        font-size: 12px;
    }

    .urgent-container div b {
        font-size: 43px;
    }

    .urgent-container div span {
        font-size: 12px;
    }

}

@media (max-width: 500px) {
    .task-menu-container .row>* {
        height: 100px;
        width: 100px;
    }

    .task-menu-container {
        width: auto !important;
    }

    .task-menu-container .row {
        gap: 25px;
    }

    .task b {
        font-size: 38px;
    }

    .task span {
        font-size: 10px;
    }

    .todo-done div b {
        font-size: 38px;
    }

    .todo-done div span {
        font-size: 10px;
    }

    .task-menu-container .row>*:hover {
        transform: scale(1.05);
    }

    .deadline-container {
        gap: 0;
        font-size: 10px;
    }

    .urgent-icon {
        width: 40px;
        height: 40px;
    }

    .urgent-container div b {
        font-size: 38px;
    }

    .urgent-container div span {
        font-size: 10px;
    }

    .todo-done div b {
        font-size: 38px;
    }

    .todo-done div span {
        font-size: 10px;
    }

    .todo-done img {
        width: 40px;
        height: 40px;
    }

    .summary-content {
        width: 100%;
    }

}