body{
    height: 100vh;
    width: 100vw;
    display:flex;
    justify-content: center;
    align-items: center;
    background: radial-gradient(ellipse farthest-side at 76% 77%, rgba(245, 228, 212, 0.25) 4%, rgba(255, 255, 255, 0) calc(4% + 1px)), radial-gradient(circle at 76% 40%, #fef6ec 4%, rgba(255, 255, 255, 0) 4.18%), linear-gradient(135deg, #ff0000 0%, #000036 100%), radial-gradient(ellipse at 28% 0%, #ffcfac 0%, rgba(98, 149, 144, 0.5) 100%), linear-gradient(180deg, #cd6e8a 0%, #f5eab0 69%, #d6c8a2 70%, #a2758d 100%); 
    background-blend-mode: normal, normal, screen, overlay, normal;
}

.container{ 
    height: 90%;
    min-width: 65%; 
    border: 1px solid black;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: column;
    box-shadow: 3px 3px orange, -3px -3px pink;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.task-list {
    border: 1px solid black;
    width: 75%;
    height: 85%;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px #F87171;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
}

.task-input {
    height: 2.5rem;
    width: 32vw;
    background-color: #FECACA;
    border: none;
    border-radius: 5px;
    font-weight: 700;
}

.add-task-btn {
    cursor: pointer;
    height: 3rem;
    background: none;
    border: none;
    font-size: 1.2rem;
    font-weight: 1000;
    color: blue;
    opacity: 60%;
}

.tasks {
    box-shadow: 2px 2px 2px #F0ABFC;
    max-width: 85%;
    display: flex;
    justify-content: space-between;
    border: 1px solid black;
    align-items: center;
    padding: 0.5rem;
    border-top-left-radius: 20px;
}

.tasks .task-name{
    -webkit-background-clip: text;
    opacity: 75%;
    color: black;
    border: none;
    font-weight: 700;
    font-size: 1rem;
    width: 50%;
    border-top-left-radius: 150px;
    border-bottom-left-radius: 150px;
}

.tasks button {
    cursor: pointer;
    height: 2rem;
    background: none;
    border: none;
    font-weight: 700;
    color: red;
    opacity: 60%;
}

.disabled {
    pointer-events: none;
    cursor:not-allowed;
}

#animate-charcter {
    background-image: linear-gradient(
    -225deg,
    #231557 0%,
    #44107a 29%,
    #ff1361 67%,
    #fff800 100%);
    background-size: auto auto;
    background-size: 200% auto;
    color: #fff;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: textclip 2s linear infinite;
    font-size: 2rem;
}

@keyframes textclip {
    to {
        background-position: 200% center;
    }
}

.task-title {
    background: -webkit-linear-gradient(black,pink);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.date-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 93%;
    color: purple;
}

.priority-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 93%;
    color: purple
}

.desc-container {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 93%;    
}

.check-container{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 93%; 
    color: purple;
    height: 20px;
}

.desc-text {
    color: purple;
}

.modal {
    /* visibility: hidden; */
    box-shadow: 2px 2px 2px #F0ABFC;
    max-width: 85%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid black;
    margin-bottom: 1rem;
    align-items: center;
    padding: 0.5rem;
    border-bottom-left-radius: 50px;
    font-size: 0.9rem;
}

.modal input {
    background: none;
    border: 1px solid black;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
    position: relative;
    left: -0.31rem;
    margin-left: 1rem;
}

.modal .description-box {
    width: 65%;
    resize: none;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    background: none;
    border: 1px solid black;
    margin: 0.3rem;
    margin-left: 1rem;
}

.modal select {
    background: none;
    border: 1px solid black;
    margin: 0.3rem;
    width: 3.7rem;
    border-top-left-radius: 15px;
    border-bottom-left-radius: 15px;
    margin-left: 1rem;
}

.modal button {
    cursor: pointer;
    height: 1.7rem;
    background: none;
    border: none;
    font-size: 1rem;
    font-weight: 1000;
    color: blue;
    opacity: 60%;
}