body {
  font-family: 'Arvo', serif;
  background: #f4f4f4;
}

.centralize button.w-40 {
  background-color: red;
  color: white;
  width: 40%;
  animation: tremer .2s;
  animation-iteration-count: 4;
}

@keyframes tremer {
  0% { margin-left: 0; }
  25% { margin-left: 7px; }
  50% { margin-left: 0; }
  75% { margin-left: -7px; }
  100% { margin-left: 0; }
}

.Search {
  display: flex;
  height: 35px;
  align-content: center;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}

.bookInput {
  outline: 0;
  color: #9D9D9D;
  border: none;
  font-size: 22px;
  width: 80%;
}

.Search button {
  color: #9D9D9D;
  background-color: #fff;
  border: none;
  font-size: 22px;
}

.deleteSearch {
  border-radius: 0 5px 5px 0;
}

.enterSearch {
  border-radius: 5px 0 0 5px;
}

.divBook {
  display: flex;
  height: 54px;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  position: relative;
  background: #ffff;
}

.divBook:hover {
  background: #4D5061;
  transition: .5s;
  color: #fff;
}

.title {
  font-weight: bold;
  margin: 0;
  display: inline-block;
  font-size: 15px;
  width: 300px;
  height: 20px;
  position: relative;
  overflow: hidden;
  bottom: 30px;
}

.pages {
  position: absolute;
  overflow: hidden;
}

footer {
  background: #F5F5F5;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: space-around;
  text-align: center;
  margin-top: 200px;
  height: 100px;
}



.imgSearch {
  width: 40px;
  top: 3px;
  position: relative;
}

.swal-overlay {
  position: absolute;
  bottom: 0;
  background: none;
  left: 0;
}


.searchItem {
  position: fixed;
}

.footer-link {
  font-size: 15px;
  padding: 20px;
  text-decoration: none;
  color: #9D9D9D;
  transition: .3s;
}

.deleteBook {
  position: absolute;
  background: aliceblue;
  border: none;
  border-radius: 4px;
  font-size: 18px;
}

.footer-link:hover {
  font-size: 20px;
  padding: 20px;
  text-decoration: none;
  color: #4D5061;
  transition-duration: .3s;
}

.fa-brands {
  padding-right: 5px;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5rem;
}

.centralize {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
  flex-direction: row;
  margin-top: 40px;
}

.centralize .footer-link {
  color: #000;
  text-decoration: none;
  margin-bottom: 1rem;
}

.centralize img {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

a {
  cursor: pointer;
}

.centralize h1 {
  margin-bottom: 1.5rem;
  font-weight: normal;
}

.centralize input {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.centralize button {
  width: 43%;
  padding: 0.75rem;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin-right: 20px;
}

.centralize .close {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 25px;
}

.centralize button.w-50 {
  background-color: #007bff;
  color: #fff;
}

.centralize button.w-25 {
  background-color: #fff;
  color: #000;
}

.centralize .google-icon {
  margin-right: 0.5rem;
}

.centralize .arrow-left-icon::before {
  content: "\2190"; /* código Unicode para a seta esquerda */
}

@media screen and (max-width: 600px) {
  /* Estilos para telas menores, se necessário */
}


