#boxImg {
  text-align: left;
}

#back {
  position: absolute;
  z-index: -1;
}

body {
  font-family: "Belanosima", sans-serif;
  max-width: 98vw;
}

#myBooks {
  text-align: center;
}
#myBooks .title {
  background-color: grey;
  margin: auto;
  border-radius: 10px;
}
#myBooks .h2 {
  margin-top: 50px;
}
#myBooks .h2 div {
  margin: 15px;
}
#myBooks .h2 form {
  display: flex;
  flex-direction: column;
  justify-content: left;
  text-align: left;
}
#myBooks .h2 form .margin {
  margin-top: 10px;
  margin-bottom: 10px;
}
#myBooks .h2 formButton {
  display: flex;
  justify-content: flex-start;
  text-align: left;
  flex-direction: column;
  max-width: 100px;
  margin: 10px;
}
#myBooks .h2 .buttonRouge {
  font-family: "Belanosima", sans-serif;
  border-radius: 5px;
  background-color: red;
  color: white;
  border: none;
  padding: 5px;
  margin: 5px;
}

#content {
  display: flex;
  flex-direction: column;
}
#content #displayBook {
  order: 1;
}
#content h2 {
  order: 2;
}
#content #sessionStorageBook {
  order: 3;
}
#content .displayBook {
  max-width: 98vw;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
#content .displayBook element {
  display: flex;
  flex-direction: column;
  margin: 10px;
  text-align: left;
  padding: 20px;
  background-color: azure;
  border: solid 1px black;
}
#content .displayBook element div {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
#content .displayBook element div button.fa.fa-trash {
  background-color: azure;
  border: none;
  color: red;
}
#content .displayBook element div button.fa-solid.fa-bookmark {
  background-color: azure;
  border: none;
  color: green;
}
#content .displayBook element #centerImage {
  justify-content: center;
}
#content .displayBook element img {
  max-width: 25vw;
}

.buttonVert {
  font-family: "Belanosima", sans-serif;
  border-radius: 5px;
  background-color: green;
  color: white;
  border: none;
  padding: 5px;
  margin: 5px;
}

@media only screen and (max-width: 600px) {
  #myBooks #content .displayBook {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media only screen and (min-width: 600px) and (max-width: 1024px) {
  #myBooks #content .displayBook {
    grid-template-columns: repeat(2, 1fr);
  }
}/*# sourceMappingURL=styles.css.map */