/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
   
            /*JS CUSTOM CSS CORNER!*/
            /*JS CUSTOM CSS CORNER!*/
            /*JS CUSTOM CSS CORNER!*/
    
            /*limit height and scroll contents*/
            .scrollable-div {
                height: 350px;
                overflow-y: scroll; /* enable vertical scrollbar */
              }
              
            .zoom {
                transition: transform .2s; /* Animation */
                margin: 0 auto;
              }
            .zoom:hover {
                transform: scale(1.1); 
              }
              
              /* MAKING CONTENT SCALE TO WINDOW SIZE*/
              .embed-container {
                border-color:#762020;
                border-width:10px;
                border-style: outset;
                max-width: 480px;
                position: relative;
                padding-bottom: 56.25%;
                height: 0;
                overflow: hidden; }
              .embed-container iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }
              
              .grid-container {
                display: grid;
                grid-template-columns: auto auto auto;
              }
              
              .grid-container > div {
                padding: 10px;
                text-align: center;
              }

body {
  background: 
   linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 59%, rgba(0, 0, 0, 0.65) 100%),
   url('/images/snowTxt.jpg') repeat;
  height: 200px;
	background-position: top;
	background-repeat: repeat;
	background-attachment: fixed;
  font-size: 18px;
  font-family: Georgia, serif;;
  margin: 0;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}
.right {
  float: right;
  margin-left: 1em;
}
.left {
  float: left;
  margin-right: 1em;
}
.center {
  display: block;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
@media only screen and (min-width: 600px) {
  .small {
    max-width: 60%;
    height: auto;
  }
}
.caption {
  margin-top: 0;
  font-size: 0.9em;
  font-style: italic;
}

a {
  font-weight: bold;
  color: #D6DFE2;
}
a:hover { 
  color: #A0B9BF;
}

h1, h2, h3, h4, h5 {
  color: #4B1515;
}

hr {
  border-width: 2px 0 0 0;
  border-style: double;
  border-color: #4B1515; 
}

/*#CONTAINER is the rectangle that has contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 700px;
  color: #762020; 
}

#content {
  background-image: url('/images/ninjaBearBG.png');
  background-position: center;
  background-size: 750px;
  padding: 30px 5% 1px 5%;
}


/*HEADER STYLE*/
#header {
  padding: 0 5%;
}
#header ul {
  display: inline-block;
  list-style-type: none;
  padding: 0;
  margin-bottom: 1em;
  margin-top: 1em;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 0.2em;
  margin-bottom: 0.8em;
  margin-top: 0.8em;
}
#header li a {
  color: white;
  background-image: url('/images/blood01.png');
  background-position: center;
  background-size: 170px;
  background-repeat: no-repeat;
  padding: 1em 3em 1em 3em;
  text-decoration: none;
  font-weight: bold;
}

#header li a:hover {
  color: white;
  background-image: url('/images/blood01.png');
  background-position: center;
  background-size: 200px;
  background-repeat: no-repeat;
  padding: 1.1em 3.1em 1.1em 3.1em;
  text-decoration: none;
  font-weight: bold;
}
#header li a:active {
  color: black;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}
.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  background-image: url('/images/water1_ripple.jpg');
  color: white;
  font-weight: bold;
  text-align: center;
  margin-top: 1.4em;
  margin-bottom: 1.4em;
  padding: 1em 3em 1em 3em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}










        .snow-container {
            display: flex;
            position: fixed;
            width: 100vw;
            height: 100dvh;
            z-index: -1;
        }
        .snow-container .snow span,
        .snow-container .snow::before,
        .snow-container .snow::after {
            position: absolute;
            width: 100%;
            height: 100%;
            color: snow;
            text-align: center;
        }
        .snow-container .snow.small {
            font-size: 1.2rem;
            opacity: 1;
        }
        .snow-container .snow.medium {
            font-size: 1.4rem;
            opacity: 0.8;
        }
        .snow-container .snow.large {
            font-size: 1.6rem;
            opacity: 0.6;
        }

        .snow-container .snow.small span {
            display: block;
            animation: fall-small 7s linear infinite;
        }
        .snow-container .snow.small::before {
            content: "❄";
            left: -30%;
            animation: fall-small 9s linear infinite;
        }
        .snow-container .snow.small::after {
            content: "❄";
            left: 30%;
            animation: fall-small 13s linear infinite;
        }

        .snow-container .snow.medium span {
            display: block;
            left: 10%;
            animation: fall-medium 8s linear infinite;
        }
        .snow-container .snow.medium::before {
            content: "❄";
            left: -40%;
            animation: fall-medium 10s linear infinite;
        }
        .snow-container .snow.medium::after {
            content: "❄";
            left: 40%;
            animation: fall-medium 6s linear infinite;
        }

        .snow-container .snow.large span {
            display: block;
            left: -10%;
            animation: fall-large 5s linear infinite;
        }
        .snow-container .snow.large::before {
            content: "❄";
            left: -35%;
            animation: fall-large 6s linear infinite;
        }
        .snow-container .snow.large::after {
            content: "❄";
            left: 35%;
            animation: fall-large 7s linear infinite;
        }

        @keyframes fall-small {
            0% {
            top: -20px;
            }
            3% {
            transform: translateX(5px);
            }
            7% {
            transform: translateX(5px);
            }
            18% {
            transform: translateX(-5px);
            }
            22% {
            transform: translateX(-5px);
            }
            38% {
            transform: translateX(13px);
            }
            42% {
            transform: translateX(13px);
            }
            58% {
            transform: translateX(-13px);
            }
            62% {
            transform: translateX(-13px);
            }
            78% {
            transform: translateX(13px);
            }
            82% {
            transform: translateX(13px);
            }
            100% {
            top: calc(100% + 20px);
            }
        }

        @keyframes fall-medium {
            0% {
            top: -200px;
            }
            3% {
            transform: translateX(5px);
            }
            7% {
            transform: translateX(5px);
            }
            18% {
            transform: translateX(-5px);
            }
            22% {
            transform: translateX(-5px);
            }
            38% {
            transform: translateX(13px);
            }
            42% {
            transform: translateX(13px);
            }
            58% {
            transform: translateX(-13px);
            }
            62% {
            transform: translateX(-13px);
            }
            78% {
            transform: translateX(13px);
            }
            82% {
            transform: translateX(13px);
            }
            100% {
            top: calc(100% + 20px);
            }
        }

        @keyframes fall-large {
            0% {
            top: -300px;
            }
            3% {
            transform: translateX(5px);
            }
            7% {
            transform: translateX(5px);
            }
            18% {
            transform: translateX(-5px);
            }
            22% {
            transform: translateX(-5px);
            }
            38% {
            transform: translateX(13px);
            }
            42% {
            transform: translateX(13px);
            }
            58% {
            transform: translateX(-13px);
            }
            62% {
            transform: translateX(-13px);
            }
            78% {
            transform: translateX(13px);
            }
            82% {
            transform: translateX(13px);
            }
            100% {
            top: calc(100% + 20px);
            }
        }