* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'arial', sans-serif;
}

.container {
    width: 85%;
    height: 100vh;
    margin: 0 auto;
}

h1 {
    text-align: center;
    margin: 40px 0;
    font-weight: 700;
}

.data-entry {
    margin-bottom: 32px;

    input {
        width: 250px;
        height: 40px;
        outline: none;
        border-radius: 10px;
        -webkit-border-radius: 10px;
        -moz-border-radius: 10px;
        -ms-border-radius: 10px;
        -o-border-radius: 10px;
        font-weight: 600;
        padding-left: 8px;
        border: 2px solid #ccc;
    }

    button {
        width: 80px;
        height: 40px;
        border-radius: 10px;
        background-color: #189d92;
        color: white;
        border: none;
        cursor: pointer;
        font-weight: bold;
        color: #131313;
    }

    button:hover {
        background-color: #16847b;
        transition: 0.1s ease-in-out;
        -webkit-transition: 0.1s ease-in-out;
        -moz-transition: 0.1s ease-in-out;
        -ms-transition: 0.1s ease-in-out;
        -o-transition: 0.1s ease-in-out;
        scale: 1.05;
    }
}

.description {
    margin: 24px 0;
    font-weight: 600;

}

.task {
    display: inline-block;
    background-color: #f2f2f2;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;

    height: 30px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;

    p {

        font-weight: 600;
    }
}

.boxes {
    display: flex;
    justify-content: space-between;

}

.box {
    padding: 20px;
    display: flex;
    width: 336px;
    min-height: 300px;
    padding: 6px 15px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}

.green {

    background: linear-gradient(179deg, #CBD72D 0.73%, rgba(107, 113, 24, 0.65) 175.45%);
}

.orange {

    background: linear-gradient(179deg, #FD8A17 -30%, #97520E 197.66%);
}

.blue {

    background: linear-gradient(180deg, #008CFF 0%, #005499 151.11%);
}


