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

* {
    box-sizing: border-box;
}

body{
    font-family: 'Goudy Bookletter 1911';
}

h1{
    font-size: 2em;
}

h2{
    font-size: 1.5em;
}

h3{
    font-size: 1.25em;
}

footer{
    background-color: #16325a;
    color: white;
}

#header-content ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
    float: right;

}

#header-content li{
    display: inline;
    text-decoration: none;
}

#header-content li a{
    padding: 5px 15px 5px 15px;
    text-decoration: none;
    margin: 0px 7.5px 0px 7.5px;
    color: #16325a;
}

#header-content li a:hover{
    background-color: #16325a;
    color: white;
}

#header-content nav{
    margin-top: 105px;
}

#banner{
    margin: 0;
    padding: 0;
    display: flex;
}

#banner img{
    width: 100%;
}

#color-bar{
    color: white;
    background-color: #a32973;
}

#color-bar h3{
    padding: 15px;
}

#wrapper-white{
    padding: 50px 0px 50px 0px;
}

#wrapper-white h1,p{
    padding-bottom: 10px;
}

#wrapper-white p{
    font-size: 1.15em;
}

#wrapper-shop{
    background-color: #f4f3f0;
    padding: 50px 0px 50px 0px;
}

#footer-left{
    text-align: left;
}

#footer-right{
    text-align: right;
}

#footer-right h3, #footer-left h3{
    font-size: 1em;
}

#footer-right p, #footer-left p{
    font-size: .75em;
    font-family: 'Lato';
}

.shop-box h3{
    padding: 5px;
}

.shop-box p{
    text-align: center;
}

.book-details{
    border: 2px solid #16325a !Important;
}

.book-details h2{
    padding-bottom: 15px;
}

.uppercase{
    text-transform: uppercase;
}

.center{
    margin-left: auto;
    margin-right: auto;
    display: table;
    float: none !Important;
}

.pink-text{
    color: #a32973;
}

.pink-button{
    background-color: #a32973;
    color: white;
    text-decoration: none;
    padding: 5px 15px;
}

/* Responsive Web Design - Grid View */
.row::after {
    content: "";
    clear: both;
    display: table;
    padding: 0;
    margin: 0;
  }  

/* For mobile phones or all the time: */
[class*="col-"] {
    float: left;
    padding: 15px;
    /*border: 1px solid red;*/
}
  
/* For tablets: */
  @media only screen and (min-width: 600px) {
    .col-s-1 {width: 8.33%;}
    .col-s-2 {width: 16.66%;}
    .col-s-3 {width: 25%;}
    .col-s-4 {width: 33.33%;}
    .col-s-5 {width: 41.66%;}
    .col-s-6 {width: 50%;}
    .col-s-7 {width: 58.33%;}
    .col-s-8 {width: 66.66%;}
    .col-s-9 {width: 75%;}
    .col-s-10 {width: 83.33%;}
    .col-s-11 {width: 91.66%;}
    .col-s-12 {width: 100%;}
  }

/* For desktop: */
  @media only screen and (min-width: 1000px) {
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;}
  }