@charset "UTF-8";

/*Dad's CSS*/

/*Global Styles-------------------------------------*/

/*Color Pallette-------------------------------------

Red         rgb(117, 8, 35)
Mint        rgb(172, 207, 204)
White       rgb(255, 255, 255)
Light Grey  rgb(184, 174, 156)
Dark Grey   rgb(89, 82, 65)

----------------------------------------------------*/

/*limited reset*/
html, body, div, section, article, aside, header, hgroup, footer, nav, h1, h2, h3, h4, h5, h6, p, span, img, ol, ul, li, dd, dt, img
    {
	margin: 0;
	padding: 0;
}

/*Basic Layout Styles-------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Open+Sans');

html {
    background-image: url(../_images/Piano_Strings.jpg);
    background-attachment: fixed;
}

body {
    display: block;
    margin: auto;
    font-family: 'Open Sans', sans-serif;
    background-color: #fff;
    color: #333;
    max-width: 1300px;
    box-sizing: border-box;
}

/*Header Styles*/

header {
    padding: 8px 20px 17px 20px;
    background-color: rgb(117, 8, 35);
}

header a {
    color: #fff;
}

h1 {
    color: #fff;
    text-align: center;
}

h2 {
    color: #fff;
    text-align: center;
    font-weight: 100;
    font-size: 1em;
    font-style: italic;
}

#billLogo {
    width: 110px;
    float: left;
    padding: 0 20px 0 0;
}

/*Nav Styles*/

nav {
    text-align: center;
    padding: 10px 20px 15px 20px;
    background-color: rgb(184, 174, 156);
}

nav li {
    padding: 0 10px;
}

nav a {
    color: #000;
    text-decoration: none;
}

nav a:hover {
    color: #555;
}

#homeButton {
    width: 20px;
    margin-bottom: -8px;
}

.scrollToTop {
    display: none;
    position: fixed;
    z-index: 99;
    border: none;
    outline: none;
    color: #fff;
    cursor: pointer;
    padding: 10px 15px;
}

/*Article Styles*/

article {
    display: block;
    margin: auto;
    padding: 10px 0;
    max-width: 1200px;
}

img {
    display: block;
    margin: auto;
    width: 100%;
    max-width: 850px;
    padding: 5px 0;
}

h3 {
    padding: 10px 20px 0 20px;
    text-align: center;
    font-size: 1.4em;
}

p {
    padding: 10px 20px;
}

a {
    color: #2970E8;
}

article ul {
    padding: 10px 20px 10px 40px;
}

dl {
    padding: 0 20px;
}

dt {
    padding: 15px 0 8px 0;
}

dd {
    padding-left: 10px;
}

#topLink {
    padding: 20px 20px;
}

/*Page-Specific Styles-------------------------*/

.smallIMG {
    max-width: 400px;
}

/*Footer Styles*/

footer {
    clear: both;
    padding: 20px;
    color: #fff;
    text-align: center;
    background-color: rgb(89, 82, 65);
    min-height: 68px
}

#PTGLogo {
    width: 130px;
    border: 5px solid #fff;
}

/*Slideshow Styles*/

.slideshow-container {
    max-width: 850px;
    position: relative;
    margin: auto;
}

.mySlides {
    display: none;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: rgba(255,255,255,0.5);
    background-color: rgba(0,0,0,0.3);
    font-weight: bold;
    font-size: 18px;
    transition: 0.4s ease;
    border-radius: 0 3px 3px 0;
}

.next {
    right: 0;
    border-radius: 3px 0 0 3px;
}

.prev:hover, .next:hover {
    color: #fff;
    background-color: rgba(0,0,0,0.8);
}

.text {
    color: #f2f2f2;
    font-size: 15px;
    padding: 8px 12px;
    position: absolute;
    background-color: rgba(0,0,0,0.5);
    bottom: 5px;
    width: 97.2%;
    text-align: center;
}

.dot {
    cursor: pointer;
    height: 13px;
    width: 13px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #717171;
}

.fade {
    -webkit-animation-name: fade;
    -webkit-animation-duration: 1.5s;
    animation-name: fade;
    animation-duration: 1.5s;
}

@-webkit-keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/*Media Queries--------------------------------*/

@media screen and (min-width: 1320px) {
    body {
        box-shadow: 0 0 15px #000;
    }
    
    nav li {
        display: inline-block;
    }
    
    .scrollToTop {
        bottom: 100px;
        right: 0;
        font-weight: bold;
        background-color: rgb(117, 8, 35);
        border-radius: 5px 0 0 5px;
    }
    
    footer p {
    padding-left: 150px;
    }
    
    #PTGLogo {
        float: left;
    }
    
    #homeIMG1 {
        float: left;
        width: 60%;
        padding: 20px;
    }
}

@media screen and (min-width: 625px) and (max-width: 1319px) {
    nav li {
        display: inline-block;
    }
    
    .scrollToTop {
        bottom: 20px;
        right: 20px;
        background-color: rgb(184, 174, 156);
        border-radius: 5px;
    }
    
    footer p {
    padding-left: 150px
    }
    
    #PTGLogo {
        float: left;
    }
    
    #homeIMG1 {
        float: left;
        width: 60%;
        padding: 20px;
    }
}

@media screen and (max-width: 624px) {
    nav li {
        list-style-type: none;
        padding: 3px 0;
    }
    
    .scrollToTop {
        bottom: 20px;
        right: 20px;
        background-color: rgb(184, 174, 156);
        border-radius: 5px;
    }
}

@media print {
    body {
        color: #000;
    }
    
    img {
        display: none;
    }
}