@charset "UTF-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Gloock&display=swap');
@import url('http://fonts.googleapis.com/css?family=Lato&display=swap');


body {
  margin: 0;
  padding: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
}

header {
  background-color: #fff;
}

p {
	padding: 10px;
}

#header-content {
  max-width: 960px;
  margin: 0 auto;
  padding: 10px;
  overflow: auto; /* Clear the float */
}

#header-content img {
  max-width: 100%;
  height: auto;
  float: left;
}

nav {
  margin-top: 120px;
  float: right;
  font-family: 'Gloock', sans-serif;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

nav li {
  display: inline-block;
  margin-right: 100px;
}

nav a {
  text-decoration: none;
  color: #16325a;
}

nav a:hover {
  background-color: #16325a;
  color: #fff;
}

#banner {
  width: 100%;
  height: 300px;
  background-image: url('images/home-banner.jpg');
  background-size: cover;
  background-position: center;
}

#color-bar {
  background-color: #a32973;
  color: #fff;
  text-align: center;
  padding: 18px;
  font-family: 'Gloock', sans-serif;
}

#wrapper-white {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
}

section {
  width: 580px;
  flex-shrink: 0;
}

section h1 {
  color: #a32973;
  font-size: 36px;
  margin-bottom: 10px;
  font-family: 'Gloock', sans-serif;
}

section p {
  font-size: 16px;
}

.book-details {
  width: 300px;
  border: 3px solid #16325a;
  padding: 20px;
  margin-left: 20px;
  text-align: center;
}

.book-details h2 {
  color: #a32973;
  font-size: 28px;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-family: 'Gloock', sans-serif;
}

#wrapper-shop {
  background-color: #f4f3f0;
}

#shop-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
  padding: 20px;
}

.shop-box {
  width: 300px;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.shop-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  padding: 10px;
}

.shop-box h3 {
  color: #a32973;
  font-size: 28px;
  text-transform: uppercase;
  padding: 10px;
  font-family: 'Gloock', sans-serif;
}

.shop-box p {
  font-size: 14px;
  flex-grow: 1;
  padding: 10px;
}

.shop-box a {
  display: inline-block;
  padding: 8px 12px;
  text-decoration: none;
  background-color: #a32973;
  color: #fff;
  margin-top: 10px;
}

footer {
  background-color: #16325a;
  color: #fff;
  padding: 20px 0;
  text-align: left;
}

#footer-content {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

#footer-left,
#footer-right {
  flex-basis: 45%;
}

#footer-left p,
#footer-right p {
  opacity: 0.7;
}

