/* *****************************************************************************
 * Filename: site.css
 * Description: This file styles the webpage.
 * Owner: Alvin McGovern
 * Author: Alvin Orzechowski, MyFirstWebPage.net
 * Date: Sat Jul 04 2020
 * Revised: Mon Mar 06 2023
 * *****************************************************************************/

/* -----------------------------------------------------------------------------
 * css variables
 * ----------------------------------------------------------------------------- */
 
:root {
  --banner-bgcolor: #bacba9;
  --banner-color: #606060; 
  --banner-border: 1px solid #717568;
 }

/* -----------------------------------------------------------------------------
 * HTML tags
 * ----------------------------------------------------------------------------- */

body {
  font-family: Arial, Helvetica, sans-serif;
  height: 100vh;
}

em, txt-italic {
  font-style: italic;
}

strong, txt-bold {
  font-weight: bold;
}

header {
  background-image: url('images/Martin D-222 Guitar - w753 vertical drawing o40.png');
  background-size: auto 95%;
  /* background-repeat: no-repeat; */
  background-position: 90% 50%;
  background-color: var(--banner-bgcolor);
  border: var(--banner-border);
  padding-right: 1.5em;
  padding-left: 1.5em;
}

header > h1 {
  text-align: center;
}

h1, h2, h3, h4 {
  color: var(--banner-color);
}

h1, footer > h4 {
  font-family: "Lucida Sans Unicode", "Times New Roman", Helvetica, Arial, sans-serif;
  text-align: center;
}

footer > h4 {
  margin-top: 0.5em;
  white-space: nowrap;
}

main {
  padding: 0 1em;
}

footer {
  background-color: var(--banner-bgcolor);
  border: var(--banner-border);
  height: 2.5em;
}

/* -------------------------------------------------------------------------- 
 * anchors
 * -------------------------------------------------------------------------- */

a {
  color: #0000ff;
  text-decoration: none;
  }
a:link { 
  text-decoration: none;
  }
a:active { 
  text-decoration: none;
  }
a:visited { 
  text-decoration: none;
  }
a:hover { 
  text-decoration: none; /*
  background-color: #00a8d3;
  color: #ffffff; */
  }
  
a img {
  border: 0;
  }
  
main > a:hover, footer > a:hover  {
  text-decoration: underline;
  /*
  background-color: #ff0000;
  color: #ffffff;
  */
  }
  
a.external_link, a.external-link {
  background: url("images/offsite-link.png") no-repeat scroll right top transparent;
  padding-right: 10px;
  }

  a.pdf_link {
    background-image: url(images/pdficon_small.png);
    background-repeat: no-repeat;
    padding-left: 22px;
    }

    a.youtube_link {
      background-image: url(images/youtubeicon.png);
      background-repeat: no-repeat;
      padding-left: 26px;
      }

a.contact_link, a.email_link {
  background: url("images/email-icon.png") no-repeat scroll right top transparent;
  padding-right: 15px;
  }

a.map_link {
  background-image: url(images/map_location_icon-15x9.png);
  background-repeat: no-repeat;
  padding-left: 12px;
  text-decoration: none;
  }

a.map_link:link, a.map_link:active, a.map_link:visited { text-decoration: none; }

a.map_link:hover { text-decoration: underline; }

span.map_link  {
  font-size: 0.8em;
  }
  
header > a:hover, footer > a:hover  {
  text-decoration: underline;
  /*
  background-color: #ff0000;
  color: #ffffff;
  */
  }

/* -----------------------------------------------------------------------------
 * ids
 * ----------------------------------------------------------------------------- */


/* -----------------------------------------------------------------------------
 * classes
 * ----------------------------------------------------------------------------- */
 
 .first-header {
   
 }
 
 .accentuate {
  font-style: italic;
  font-weight: bold; 
 }
    
.highlight {
  border: 1px solid #999999;
  -webkit-box-shadow: 3px 3px 4px 4px rgba(170,170,170,1);
  -moz-box-shadow: 3px 3px 4px 4px rgba(170,170,170,1);
  box-shadow: 3px 3px 4px 4px rgba(170,170,170,1);
  padding: 0.5em;
  width: 80%;
  margin: 0 auto;
}
 
.otsfm-font {
  color: #181818;
  font-family: "Georgia", "Times New Roman", Helvetica, Arial, sans-serif;
}

.txt-header {
  max-width: 500px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.txt-header img {
  width: 100%;
}

.pnt-header {
  display: none;
}
 
.hideThis {
  display: none;
}

.nBR {
  white-space: nowrap;
}

.onlyPrint {
  display: none;
}