@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

* {
  margin: 0;
  padding: 0;
}

header {
  background-color: white;
  color: #474747;
  height: 70px;
  display: flex;
  align-items: center;
  padding: 0px 20px;
  /* position: fixed;     
  top: 0;               
  left: 0;
  width: 100%;       
  z-index: 999;       */

}
a {
  list-style: none;
  text-decoration: none;
  color: #474747;
}
.logo {
  display: flex;
  align-items: center;
  margin: 0px 70px 0px 30px;
}

.logo img {
  height: 40px;
  width: 40px;
}

.logo p {
  font-weight: 600;
  margin-left: 0px;
  font-size: xx-large;
}

ul {
  display: flex;
  justify-content: center;
  list-style-type: none;
  margin: 0px 40px 0px 200px;
}

li {
  margin: 0px 4px;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: medium;
  font-family: sans-serif;
}

li:hover {
  background-color: #b3002d;
  transition: 0.5s;
  color: #DBDFD0;
}

.book-table {
  color: #b3002d;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: medium;
  font-family: sans-serif;
  margin-left: 150px;
  border: 1px solid #b3002d;
  background-color: white;
}

.book-table:hover {
  background-color: #b3002d;
  border: 1px solid #DBDFD0;
  transition: 0.5s;
  color: #DBDFD0;
}

.pages {
  background-color: #b3002d;
  transition: 0.5s;
  color: #DBDFD0;
}

.small_button {
  display: none;
}

.close_button {
  display: none;
}