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

body{
   background-color: black;
   display: grid;
   justify-content: center;
}

.con{
    height: auto;
    width: 600px;
    border: 1px solid black;
    margin-top: 10%;
    /* margin-left: 30%; */
    text-align: center;
    color: white;
    box-shadow: 0px 2px 19px rgb(101, 165, 42);
  
    
}

.tag{
    margin-top: 5%;
    margin-bottom: 5%;
}

input{
    height: 29px;
    width: 40%;
    border-top: none;
    border-right: none;
    border-left: 1px solid  rgb(101, 165, 42);
    border-bottom: 1px solid  rgb(101, 165, 42);
    padding: 0px 6px;

}

input::placeholder{
    color: black;
    font-family:Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}
button{
    height: 30px;
    width: 15%;
    background-color: rgb(101, 165, 42);
    color: white;
    border: 1px solid   rgb(101, 165, 42);
    cursor: pointer;
}


.new ul{
    position: relative;
    background-color: rgb(255, 255, 255);
    color: black;
    font-size: 19px;
    text-align: left;
    width: 80%;
    margin-left: 10%;
    padding: 5px;
    margin-bottom: 2%;
    animation-name: li;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    font-family: serif;
    font-weight: bold;;
    height: auto;
}


.new ul i{
    position: absolute;
     right: 10px; 
    cursor: pointer; 
}
.fa-solid.fa-pen-to-square{
    margin-right: 10%;
}
#b{
    background-color: white;
height: 20px;
    margin-left:74%;
    font-weight: bold;
    border: none;
    color: black;
}



@keyframes col{
    0%{
        color: gray;
    }
    50%{
        color: black;
    }
    100%{
        color: rgb(101, 165, 42);
    }

}


@media(max-width:400px){
    .con{
        width: 350px;

    }
    h1{
        font-size: 19px;
    }
    input::placeholder{
        font-size: 10px;
    }
}