*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    
}
body{
    background-color: rgb(22, 21, 21);
}
.box1{
    color:white;
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    background-color: black;
    width: 500px;
    min-height: 400px;
    border-radius: 10px;
    margin: auto;
    margin-top: 30px;
    padding: 5px 10px;
    text-align: center;
}
.box1 h1{
   font-size: 2.5rem;
}
.input-section {
  display: flex;
  
  justify-content: center;
  gap: 5px;
  margin-top: 10px;
}
#inputbox {
  width: 300px;
  padding: 0 4px;
  height: 35px;
}
.listitm:hover {
  background-color: rgb(236, 104, 104);
  cursor: pointer;
}
#btn{
    background-color: green;
   color: white;
    border: none;
 padding: 4px 10px;
 font-weight: bold; 
 min-height: 35px;
 margin-left: 10px;

}
.remove{
font-size: 20px;
border: none;
margin-left: 10px;
cursor: pointer;
background: transparent;}
.box2{
    padding: 10px 12px;
}
.listitm{
  text-align: left;
   padding: 5px 8px;
   display: flex;
   justify-items: center;
    list-style-type: none;
    background-color: white;
    width: 100%;
  max-width: 100%;
  word-break: break-word;
    color: black;
    margin: 6px 0;
   border-radius: 10px;
   font-size: 1.2rem;
}
@media (max-width: 650px) {
  .box1 {
    width: auto;
    height:100vh;
  }
}
