* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Times New Roman', Times, serif;
    background-color: #9CC8BE;
}

.banner {
    font-size: 1.4em;
    color: #cc000c; 
    text-align: center;
    margin: 40px 0; 
}

/*navbar styles*/
a:link {
    color:#fff;
    text-decoration: none;
}

a:visited {
    color: #9CC8BE;
}

a:hover {
    color: #fff; 
    padding: 40px;
}

a:active {
    color: #9CC8BE;
}

.navbar ul {
    display: flex;
    justify-content: space-around;
    list-style-type: none;
    padding: 40px;
    background-color: #333;
}

  .navbar li {
    font-size: 1.1em;
    text-decoration: none;
  }
/*Header Image styles*/
.feature-img {
    background-image: url("images/Bookshelf.jpg");
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-size: cover;
    padding: 30px 0px;
    width: 100%;
}


/*heading styles*/
h1 {
    font-size: 150px;
    color: #fff;
    text-shadow: 8px 4px 0px #000;
    padding-left: 25px;
    margin: 50px 15px;
}

h2 {
    font-size: 1.6em;
    color: #000;
    text-shadow: 1px 1px 0px #fff;
    text-align: center;
}

h3 {
   font-size: 1.7em; 
   text-align: center;
}

h4 {
    font-size: 1.1em;
    margin-left: 10px;
}

h5 {
    font-size: 0.9em;
    margin-left: 10px;
}

h6 {
    font-size: 1.9em;
    font-weight: bold;
    padding: 40px;
    text-align: center;
}

/*Cart Button styles*/
.shopping-cart {
    display: flex;
    justify-content: center;
    margin: 20px; 
    padding: 20px;
}
.shopping-cart .button {
    background-color: #9CC8BE;
    border: none;
  }

/*Series Spotlight styles*/
.spotlight {
    background-color: #e3dac9;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 40px;
}

.featured-books {
    display: flex;
    justify-content: space-between;
    height: calc(100vh - 100px);
    padding: 40px 20px;
    background-color: #e3dac9;
}

  /*Book Slideshow styles*/
.slideshow {
    align-self: flex-start;
    padding: 20px;
}

.slideshow .button {
    display: flex;
    justify-content: space-between;
    background: linear-gradient(to bottom, #ffffff 0%, #9CC8BE 100%);
    border: 1px solid #ccc;
    text-align: center;
}
/*Payment Types section styles*/
#payments {
    background-image: url(images/Harbour4.jpg);
    background-repeat: no-repeat;
    padding: 20px;
}

/*Product Page table styles*/
table {
    background-color: #f2f0e7;
    width: 100%;
    margin: 0 auto; 
    border: 1px solid black;
}

td {
    padding: 10px;
} 

/*footer styles*/
.footer {
    background-color: #9CC8BE;
    color: #000;
    text-align: center;
    padding:20px;
}
