body{
    font-family: Arial;
    justify-content: center;
    align-items: center;
    display: flex;
}
h1{
    text-align: center;
}
.main-box{
    margin-top: 20px;
    border: 2px solid black;
    border-radius: 10px;
    width: 800px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: antiquewhite;
}
.grid-container{
    display: grid;
    grid-template-columns: 200px 250px 100px;
    gap: 40px;
    margin-bottom: 30px;
}
.grid-container #todo-input{
   font-size: 15px;
   padding: 5px;
   height: 35px;
   border-radius: 5px;
   width: 200px;
  
}
.grid-container #todo-date{
   font-size: 15px;
   padding: 5px;
   height: 35px;
   border-radius: 5px;
   width: 200px;
  
   
}
.grid-container #add-butt{
   font-size: 20px;
   height: 52px;
   border-radius: 5px;
   background-color: rgb(33, 160, 33);
   color: #fff;
}
.grid-container #add-butt:hover{
   box-shadow: 0px 0px 10px rgb(33, 160, 33);
   
}

.todo-container span{
   font-size: 20px;
   height: 40px;
   border-radius: 5px;
   border: 2px solid black;
   width: 200px;
   justify-content: center;
   display: flex;
   background-color: #fff;
   align-items: center;
}
.todo-container button{
    font-size: 20px;
   height: 52px;
   border-radius: 5px;
   background-color: rgb(238, 129, 27);
   color: #fff;
}
.todo-container button:hover{
    box-shadow: 0px 0px 10px rgb(238, 129, 27);
}