*{
    margin:0;
    padding:0;/*universal selector*/
}
body{
    font-family: 'Courier New', Courier, monospace;
}
.navbar{
    background-color: peru;
    padding:10px;
}
.container{
      padding:10px;
}
.book1{
    background-color: black;
    width:25%;
    color: white;
    
    padding:15px;
    
    
   
    border-radius: 10px;
    vertical-align: top;
   

    display: inline-block;
    margin:30px;
}
.book1 h1{
    color: peru;
}
.book1 button{
    color: white;
    background-color: peru;
    padding-top:5px;
    padding-bottom:5px;
    padding-left: 10px;
    padding-right: 10px;
    border:none;
    border-radius:10px;
    margin-top:10px;
   
}
.book1 button:hover{
    background-color: rgb(214, 158, 102)
}
.btn{
    color:rgb(143, 74, 5);
    background-color: rgb(164, 119, 74);
    padding-top:20px;
    padding-bottom: 20px;
    padding-left: 30px;
    padding-right: 30px;
    border-radius: 100%;
    border:none;
    font-size: 40px;
  
    position:fixed;
    bottom: 30px;
    right:30px; 
}
.btn:hover{
    
    background-color:  rgb(118, 62, 7);
}
.blur{
    background-color: black;
    opacity:0.8;
    position:absolute;
    width:100%;
    height:100%;
    top:0;
    left:0;
    right:0;
    z-index:1;
    display: none;
}
.poop{
    background-color: peru;
    width:40%;
    padding:40px;
    border-radius:10px;
    display: none;
    top:20%;
    left:20%;
    z-index:2;
    position: absolute;
}
.poop h2{
    color:rgb(57, 35, 13);
}
.poop input{
    background-color: transparent;
    border:none;
    width:100%;
    font-size: 20px;
    padding:5px;
    margin:5px;
    border-bottom:solid rgb(57, 35, 13) 2px;
}
.poop textarea{
   background-color:transparent;
    width:100%;
    font-size: 20px;
    padding:5px;
    margin:5px;
    border:solid rgb(57, 35, 13)1px;
}
.poop input::placeholder{
    color:rgb(57, 35, 13);
}
.poop textarea::placeholder{
     color:rgb(57, 35, 13);
}
#add{
    padding:10px;
     background-color: rgb(154, 111, 68);
     color:rgb(162, 87, 12);
     border:none;

}
#add:hover{
    background-color: peru;
}
#cancel{
    padding:10px;
     background-color:rgb(154, 111, 68);
     color:rgb(162, 87, 12);
     border:none;

}
#cancel:hover{
    background-color:peru;
}
.poop input{
    outline:none;

}
.poop textarea{
    outline:none;

}

