/* Basic settings for all pages */
html {
    background: url("../images/background.jpg") no-repeat center center; 
    background-attachment: fixed;
    background-size: cover;
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body {
    font-family: 'Mountains of Christmas', cursive;
    margin: 0 50px 0 50px;
}
img {
    max-width: 100%;
}
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}
p {
    margin: 0;
}
h1 {
    font-size: 1.5em;
    font-weight: 700;
    margin: 0;
}
h2 {
    
    font-size: 1.25em;
    font-weight: 700;
    margin: 0;
}
h3 {
    font-size: 1.25em;
    font-weight: 700;
    margin: 0;
}
h4 {
    font-size: 1.25em;
    font-weight: 400;
    margin: 0;
}

/* Main Container for Page - 12 Columns with Equal Containers */
.container {
    background-color: rgb(255, 255, 255, .6);
    display: grid;
    grid-template-columns: repeat(12,1fr);
    grid-gap: 0px; 
}
.container > * {
    grid-column: 1 / span 12;
}
.header {
    padding: 10px 0 5px 0;
}
.navigation {
    padding: 10px 30px 10px 30px;
}
.tagline {
    padding: 10px 30px 10px 30px;
}
.quote {
    background-color: rgb(255, 255, 255, .5);
    border-radius: 4px;
    margin: 10px 20px 5px 20px;
    padding: 10px;
    box-shadow: 0px 5px 5px rgb(0, 0, 0, .5);
}
.content {
    background-color: rgb(255, 255, 255, .5);
    border-radius: 4px;
    margin: 5px 20px 10px 20px;
    padding: 10px;
    box-shadow: 0px 5px 5px rgb(0, 0, 0, .5);
}
.footer {
    background-color: rgb(0,0,0,1);
    color: #FFF;
    padding: 10px;
    text-align: center;
}
@media (min-width: 750px) {
    body {
        margin: 0 100px 0 100px;
    }
    .center {
        margin: 0 0 0 50px;
}
    .navigation {
        background-image: none;
        padding: 10px;
    }
    .quote {
        grid-column: 1 / span 4;
        margin: 10px 5px 10px 10px;
    }
    .content {
        grid-column: 5 / span 8;
        margin: 10px 10px 10px 5px;
    }
    nav ul {
        display: flex;
        justify-content: space-between;
    }
    #tagline {
        text-align: center;
    }
}
@media (min-width: 850px) {
    .navigation {
        padding: 10px 50px 0 50px;
    }
    .quote {
        grid-column: 1 / span 4;
    }
    .content {
        grid-column: 5 / span 8;
    }
}

/* Navigation & Link Styling */
nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
li {
    padding: 0 0 5px 0;
}
a.navlink {
    color: #000;
    text-decoration-line: underline;
    font-weight: 700;
    }
a.navlink:hover {
    color: #FFF;
    text-shadow:0px 0px 20px #FFF;
}
a.navlink:active {
    color: #FFF;
}
a.navlink:visited {
}
a.footerlink {
    color: #FFF;
    text-decoration: none;
    font-weight: 700;
    }
a.footerlink:hover {
    color: rgb(180,180,180, 1);
    text-shadow:0px 0px 20px #FFF;
}
a.footerlink:active {
    color: #FFF;
}
a.footerlink:visited {
}
a.emaillink {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    }
a.emaillink:hover {
    color: rgb(170,170,170, 1);
}
a.emaillink:active {
    color: #000;
}
a.emaillink:visited {
}
.imglink:link {
  display: inline-block;
  background-image: url('../images/fblink.png');
  width: 151px;
  height: 28px;
}
.imglink:hover {
    background-image: url('../images/fblinkhover.png');
}
/* HIDE Radio Button - Don't use display:none or visibility:hidden since such will impact accessibility */
[type=radio] { 
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}
[type=radio] + img {
    float: left;
    cursor: pointer;
    width: 50%;
}
[type=radio]:checked + img {
    z-index: 1;
    width: 100%;
}