* {
    margin: 0;
  }
  *, *::before, *::after {
    box-sizing: border-box;
  }
  p, h1, h2, h3, h4, h5, h6 {
    overflow-wrap: break-word;
  }
  ul {
    list-style-type: none;
  }
  body{
    background-color: #966F33;
  }
  .library-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .book-card{
    display: grid;
    grid-template-columns: 100px 1fr 50px;
    background-color: #f5f5f5;
    border-style: solid;
    border-color: #335B96;
    width: 460px;
    height: 150px;
    margin-top: 10px;
  }
  .book-data{
    margin: 10px 30px 10px 0px
  }
  .book-image{
    background-color: grey;
    /* ratio for paper is .77 */
    width: 100px;
    height: 130px;
    margin: 10px;
  }
  .options{
    justify-content: end;
  }
  .delete-button{
    justify-self: end;
    margin: 10px;
    height: 20px;
    width: 20px;
  }
  .nav{
position: sticky;
top: 0;
width: 100%;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
background-color: #335B96;
padding: 5px;
  }
  p{
    margin-bottom: 10px;
  }