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

.container {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width:425px) {
    .container {
        width: 90%;
    }
}

@media (min-width:425px) {
    .container {
        width: 80%;
    }
}

@media (min-width:1024px) {
    .container {
        width: 80%;
    }
}

@media (min-width:1440px) {
    .container {
        width: 70%;
        max-width: 1750px;
    }
}

/* Start screen  */
#start-screen {
    background-color: #B0DB9C;
}

.start {
    /* background-color: #B0DB9C; */

    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    line-height: 45px;
    align-items: center;
    justify-content: space-evenly;
}

.h-start {
    color: rgb(0, 0, 0);
    animation: 1s apear forwards;

}

.p-start {
    font-weight: bold;
    text-align: center;
    line-height: 20px;
    animation: 1s apear forwards;
}

#start-btn {
    font-weight: bold;
    width: 60%;
    max-width: 300px;
    height: 5vh;
    border: none;
    outline: none;
    background-color: #d4ffcfa6;
    border-radius: 5px;
    color: #000000;
    animation: 1s apear forwards;
    text-shadow: none !important;
    box-shadow: 0 0px 5px 0 rgb(90, 90, 90);
}

#start-btn:hover {
    box-shadow: 0px 0px 15px 0px black;
    outline: 1px solid black;
}


@keyframes apear {
    0% {
        opacity: 0;
    }

    40% {
        opacity: 1;
    }

    100% {
        text-shadow: 3px 1px 4px #313131a8;
    }
}

/* ==================================================== */
/* ===================< Main Screen >================== */
/* ==================================================== */
#main-screen {
    background-color: #ECFAE5;

}

.main {
    display: flex;
    min-height: 100vh;
    height: auto;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    padding: 50px 0 10px 0;
}

.form {
    width: 100%;
    max-width: 700px;
    height: 27vh;
    background-color: #CAE8BD;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    border-radius: 150px;
    box-shadow: 0 0px 7px 0px black;
    margin-left: auto;
    margin-right: auto;
}

#add-input {
    width: 60%;
    height: 35px;
    border-radius: 10px;
    padding: 5px;
    border: none;
    outline: none;
    font-size: 0.9em;
}

#add-input:focus {
    border: 1px solid black;
}



#add-btn {
    min-width: 70px;
    max-width: 140px;
    width: 20%;
    height: 35px;
    padding: 5px;
    border: none;
    outline: none;
    border-radius: 10px;
    background-color: #B0DB9C;
}

#add-btn:hover {
    box-shadow: 0px 0px 15px 0px black;
    outline: 1px solid black;
}

.tasks-list {
    background-color: #CAE8BD;
    width: 100%;
    height: auto;
    border-radius: 25px 25px 10px 10px;
    margin: 15px auto 15px auto;
    padding: 15px 5px 7px 5px;
}

.tasks-h1 {
    text-align: center;
    margin-bottom: 15px;
}

.tasks-div {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    gap: 15px;
    height: auto;
}

.task {
    padding: 5px;
    background-color: white;
    width: 100%;
    min-height: 8vh;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
}

.reacts {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.done {
    height: 3.5vh;
    width: 4.5vw;
}

.done-task {
    text-decoration: line-through;
    color: gray;
}

.delete {
    /* max-height: 20px;
    max-width: 20px; */
    width: 1rem;
    height: 1rem;
}

.delete:hover {
    animation: 0.4s vibration forwards;
}

@keyframes vibration {
    30% {
        rotate: 30deg;
    }

    50% {
        rotate: -30deg;
    }

    100% {
        rotate: 0deg;
    }
}


/* don't forget adding transition to delete react  */

footer{
    width: 100%;
    background-color: #B0DB9C;
    height: 50px;
    margin-bottom: 0px;
        display: flex;
    align-items: center;
    justify-content: center;

}

footer .container{
        display: flex;
    align-items: center;
    justify-content: center;
}

