html,
body {
  height: 100%;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.main-content {
  flex: 1;
}

.featured-books {
  padding: 10px;
  display: flex;
  flex-direction: column;
}

.featured-books img {
  width: 200px;
}



/* About Section */
.about-section {
  padding: 15px;
}

.about-section small {
  color: #848484;
}

.about-section p {
  max-width: 1200px;
}

/* Contact Section */

.contact-section {
  color: white;
  background-color: black;
  flex: 1;
}

.contact-section ul {
  list-style: none;
  padding: 0;
}

.contact-section li {
  margin-bottom: 10px;
}

.contact-section a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
}

.contact-section img {
  width: 20px;
  height: 20px;
  margin-right: 5px;
}

@media only screen and (max-width: 720px) {
  .featured-books img {
    width: 100px;
  }
}