* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background-image: url(/img/44.jpg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    font-family: "Metrophobic", sans-serif;
    color: white;
    height: 100%;
    margin: 0;
    padding: 0;

}

@media (max-width : 770px) {

    body {
        background-image: url(/img/pexels-mikhail-nilov-7583936.jpg);
        background-size: cover;
        background-position: center;
        /* background-attachment: fixed; */
        background-repeat: no-repeat;
    }

}

.overlay {
    position: relative;
    min-height: 100vh;
}

.overlay::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.overlay>* {
    position: relative;
    z-index: 1;
}


.card {
    padding: 20px;
    background-color: purple;
    color: white;
    box-shadow: 0px 0px 20px rgba(128, 0, 128, 0.5);
    border-radius: 5px;
}

.card-body {
    background-color: violet;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
    border-radius: 5px;
}

.form-group {
    margin: 10px 0px;
    align-items: center;
}

.form-control {
    margin: 5px 0px;

}

#add_task_btn {
    font-size: 35px;
    color: purple;
    margin-left: 15px;
    cursor: pointer;
    transition: all .3s ease;
}

#add_task_btn:hover {
    transform: scale(1.3);
    color: white;
}






.icon-Of-Div {
    color: rgba(255, 0, 0, 0.5);
    cursor: pointer;
    animation: move 1s ease-in-out infinite;
}

@keyframes move {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }

    100% {
        transform: translateY(0);
    }
}

.deleteAll {
    width: 100%;
    border-radius: 5px;
    color: white;
    background-color: red;
    border: 0px solid transparent;
    padding: 15px;
    transition: all .5s ease;
    display: none;
}

.deleteAll:hover {
    background-color: white;
    color: red;
    transform: scale(1.01);
}

/********************************************************************************************************************************/



#change_theme_button {
    padding: 10px;
    border: 0px solid transparent;
    border-radius: 5px;
    background-color: violet;
    color: black;
    margin-top: 20px;
    margin-left: 20px;
    transition: all .3s ease;
}

#change_theme_button:hover {

    background: linear-gradient(45deg,
            red,
            orange,
            yellow,
            green,
            cyan,
            blue,
            violet);


    color: rgb(255, 255, 255);
    transform: scale(1.05);
}

.my-modal {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 22;
    top: 0;
    right: 0;
    display: none;
    justify-content: space-around;
    align-items: center;

}

.modal-card {
    width: 40%;
    padding: 10px;
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    color: rgb(0, 0, 0);
}

@media (max-width : 770px) {
    .modal-card {
        width: 80%;
    }
}

.modal-card h5 {
    font-size: 20px;
}

.modal-card p {
    font-size: 16px;
}

.form-group {
    margin: 10px;
}


/********************************************************************************************************************************/
.my_modal_confirmation {
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    position: fixed;
    z-index: 22;
    top: 0;
    right: 0;
    display: none;
    justify-content: space-around;
    align-items: center;

}

.modal_card_confirmation {
    width: 40%;
    padding: 10px;
    background-color: black;
    border-radius: 10px;
    color: rgb(255, 255, 255);
}
@media (max-width : 770px) {
    .modal_card_confirmation {
        width: 80%;
    }
}
