*{
  font-family: "Permanent Marker", cursive;
  font-weight: 400;
  font-style: normal;
  
}
*{
  font-family: "Lemon", serif;
  font-weight: 400;
  font-style: normal;
  
}

body {
    background-image: url("bgimage.avif");
    background-size: cover;  
    background-position: center;  
    background-repeat: no-repeat;  
    min-height: 100vh; 
}

.navbar{
    background-color: #FD6569;
    padding: 5px;
    border-top-left-radius: 20px ;
    border-top-right-radius: 20px ;
    border: 50px;
    justify-content: 20px;
}

.container{
    padding : 10px ;
}

.book-container{
    padding: 15px;
    width: 25%;
    background-color: black;
    border-radius: 20px;
    color: aliceblue;
    margin: 20px;
    display: inline-block;
}

.book-container h2{
    color:tomato;
}

.book-container button{
    color: red;
    background-color: white;
    border-radius: 15px;
    border: none;
}

.add-button{
    border-radius: 100%;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #FD6569;
    color: black;
    font-size: 40px;
    border: none;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    position: fixed;
    right: 30px;
    bottom: 30px;
}
.popup-overlay{
    background-color: black;
    opacity: 0.8;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0%;
    bottom: 0%;
    z-index: 1;
    display: none;
}

.popup-box{
    background-color: #FD6569;
    width: 40%;
    padding: 40px;
    border-radius: 15px;
    position: absolute;
    top: 20%;
    left: 30%;
    z-index: 2;
    display: none;
}
.popup-box input{
    background: transparent;
    border: none;
    width: 100%;
    margin: 5px;
    padding: 5px;
    font-size: 20px;
    border-bottom: solid black 2px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}
.popup-box textarea{
    background: transparent;
    width: 100%;
    margin: 5px;
    padding: 5px;
    font-size: 20px;
    border: solid black 2px;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
}

.popup-box input::placeholder{
    color: white;
}
.popup-box textarea::placeholder{
    color: white;
}

.popup-box button{
    background-color: black;
    padding: 12px;
    border-radius: 15px;
    color: whitesmoke;
    border: none;
    margin: 5px;

}
.popup-box input:focus{
    outline: none;
}
.popup-box textarea:focus{
    outline: none;
}