/*STYLES FOR 'ON THE WRONG SIDE! HOME.*/

/*TOP BANNER TEXT*/
/*The common styles and positions for the text on the top banner.*/
.bannertext{
 max-width: 782px;
    /*padding-top: 0px;*/
    text-align: center;
    padding-left: 5%;
    padding-right:5%;
    font-family: Helvetica, Arial, sans-serif;
    color: white;
}

/*My name in a nice big font.*/
.nameonbanner {
    font-weight: bold;
    font-size: 18pt;/*Changed to 28pt when a computer is used.*/
    font-family: Garamond, "Times New Roman", serif;
    color: #ffde00; /*Dark yellow.*/
}

/*The following brief description.*/
.textonbanner {
    padding-bottom: 20px;    
    font-weight: normal;
    font-size: 12pt; /*Changed to 18pt when a computer is used.*/
}    

/*The link to 'About' to learn more about me.*/
.linkonbanner{
    padding-bottom: 60px; /*Determines how much of the bottom of the banner can be seen.*/
    font-weight: normal;
    font-size: 18pt;
}


/*BOOK DESCRIPTION.*/
/*The fancy image of three books, width 331 pixels.*/
.bookimage{
    width: 290px;
    display:block;
    padding-top: 10px;
   margin:auto; /*Centre the image.*/
}

/*Book image and description layout for screens > 1000 pixels in width.*/
@media screen and (min-width: 480px){
    .bookimage{
        float:left; 
        margin-left: 30px;
        margin-right: 20px}
}

/*The styles and positions for the book summary section.*/
.booksummary{
    padding-top:0px;
    max-width:1200px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 12pt;
    color: black;
    text-align:center;
}

/*The font for the book name.*/
.bookname{    
    font-family: Garamond, "Times New Roman", serif;
    font-size: 24pt;
}

/*The font for testimonials.*/
.testimonial{    
   font-family: Garamond, "Times New Roman", serif;
   font-size: 14pt;
}

@media screen and (min-width: 1000px){
    .nameonbanner{font-size: 28pt}
    .textonbanner {font-size: 18pt}
    .linkonbanner{font-size: 28pt}
    .booksummary{font-size: 18pt}
    .bookname{font-size: 32pt}
    .testimonial{font-size: 22pt}
}

/*The link to the 'Driving' section.*/
.summary-link{
    padding-top: 28px;
    padding-bottom: 28px; /*Determines the overlap of the bottom banner.*/
}


/********************************************************************************/
