*{
    margin: 0;
    box-sizing: border-box;
    padding: 0;
}
body{
    background-image: url(book-day-background.avif);
    background-repeat: no-repeat;
    background-size: cover;  
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

#appHeading{
    margin-top: 25px;
    margin-bottom: 100px;
    font-size: 50px;
}

form{
    margin-bottom: 100px;
}
form input{
    width: 200px;
    height: 25px;
}

.list h2{
    margin-bottom: 30px;
}

.book{
    display: flex;

}
.book input{
    width: 300px;
    height: 20px;
    margin-right: 20px;
}

.actions{
    margin-top: 10px;
    margin-bottom: 10px;

}

.actions button{
    width: 100px;
    height: 20px;
}

.Edit{
    background-color: yellow;
}

.Delete{
    background-color: red;
}