* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
  /* color: #5d6063; */
  background-color: #eaedf0;
  font-family: "Helvetica", "Arial", sans-serif;
  line-height: 1.3;
}

h1 {
  text-align: center;
  margin: 1rem;
}

.library {
  margin: 2rem;
  gap: 1rem; 
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 1fr;
}


.books {
  list-style-type: none;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  grid-auto-rows: max-content;
  gap: 1rem;
}

.content {
  padding: 0.5rem;
  border: solid 1px black;
  border-radius: 5px;
  background-color: #c4e1fc;
}

button {
  padding: 0.5rem;
  border: 1px black solid;
  border-radius: 5px;
  margin: 0.5rem;
}

.new-book {
  display: grid;
  width: 200px;
  height: 400px;
  gap: 0.5rem;
  padding: 0.5rem;
  border: solid 1px black;
  border-radius: 5px;
  background-color: #c4e1fc;
}

.new-book > * {
  padding: 0.2rem;
}