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

/*TOP BANNER*/
/*The style and position of the large title on the banner .*/
.titleonbanner {
    max-width: 782px; /*Accommodates all iPhones.*/
    padding-left: 5%;
    padding-right: 5%;
    padding-top: 30px;
    padding-bottom: 40px;
    text-align: center;
    font-weight: bold;
    font-size: 28pt;
    font-family: Garamond, "Times New Roman", serif;
    color: white;
}

/*CONTENT*/
.davidimage{ 
  width: 290px;
  display:block;/* Must follow width for the former to be applicable.*/
  margin:auto;/* Centre the image for mobile use.*/
}

/*For computer use.*/
@media screen and (min-width:480px) {
  .davidimage{float:left; margin-top: 15px; margin-left: 30px; margin-right: 20px; margin-bottom:10px}    
}

/*A title.*/
.title{
    margin-top: 10px;
    max-width: 1200px;
    font-weight: bold;
    font-size: 24pt;
    font-family: Garamond, "Times New Roman", serif;
    color: black;
    text-align: center;
}


/*Style and position for the second section of text.*/
.about{
    max-width: 1200px;
    font-family: Helvetica, Arial, sans-serif;
    font-weight: normal;
    font-size: 12pt;
    color: black;
    text-align: left;
    text-indent: 40px;
}

/*For computer use.*/
@media screen and (min-width:480px) {
  .about{margin-left: 30px;font-size: 14pt}    
}

/*A line (i.d. = Iquote) in the penultimate paragraph briefly animated whent the subject of a link.*/
:target {
    animation-name: IquoteAn;
    animation-duration: 0.5s;
     animation-iteration-count: 5;
}

/*What the named animation does.*/
@keyframes IquoteAn {    
    from {color: red;  background-color: red;}
    to {color: black; background-color-white;}
}

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


