/* 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." */


@import url('https://fonts.googleapis.com/css2?family=Henny+Penny&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Sunshiney&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Mountains+of+Christmas&display=swap');


body {
  color: indigo;
  background-color: black;
  background-image: url(/images/hearthing.png), url(/images/hearthing.png),   url(/images/darkpinkcheck.png);
  background-repeat: no-repeat, no-repeat, repeat; /* Optional: adjust repeat behavior */
  background-position: top right, top left, top left; /* Optional: adjust positions */
  font-family: MS PGothic;
  font-size: 13px;
    cursor: url(/images/curpurple.png), auto;
}

.cover {
  object-fit: cover;
  width: 100%;
  height: 300px;
}

.banner {
  position: relative;
  text-align: center;
  color: white;
}

.bannertext {
  position: absolute;
  bottom: 8px;
  left: 16px;
}

p {
    font-size: 13px;
    padding: 10px;
    margin-top: -5px;
}

a {
    color: mediumvioletred;
}

a:hover, .count {
    color: plum;
    text-decoration: none;
}

h1 {
    font-family: 'Mountains of Christmas';
    font-weight: 200;
    text-align: center;
    font-size: 85px;
    margin-bottom: -15px;
    text-shadow: 5px 5px 5px black;
    color: bisque;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  background-image: linear-gradient(plum 0%, black 40%);
  background-repeat: repeat-x;
  background-position: left center;
  max-height: 30px
}

li {
  float: left;
  font-size: 10px;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 9px 12px;
  text-decoration: none;
  font-size: 10px;
}

li a:hover:not(.active) {
  background-color: indigo;
    background-image: linear-gradient(lavender 0%, indigo 40%);
  background-repeat: repeat-x;
  background-position: left center;
}

.active {
  background-color: darkorchid;
  background-image: linear-gradient(white 0%, darkorchid 40%);
  background-repeat: repeat-x;
  background-position: left center;
}

.container {
  display: grid;
  grid-template-areas:
    "header header"
    "content menu"
    "footer footer";
  grid-template-columns: 5fr 1.2fr;
  gap: 12px;
  background-color: black;
  background-image: linear-gradient(black, plum);
  padding: 20px;
  margin-left: 20%;
  margin-right: 20%;
}
.container > div {
background: linear-gradient(180deg,tan 0%, linen 25%);
  padding: 0px;
}
.header {
  grid-area: header;
  text-align: center;
}
.menu {
  grid-area: menu;
  overflow: auto;
        overflow-wrap: break-word;
        scrollbar-color: plum black;
        scrollbar-width: thin;
}
.content {
  grid-area: content;
        height: 440px;
        overflow: auto;
        overflow-wrap: break-word;
        scrollbar-color: plum black;
        scrollbar-width: thin;
}
.footer {
  grid-area: footer;
}

img {
    margin-bottom: -5px;

}

.titlebar {
  background-image: linear-gradient(plum 0%, black 40%);
  background-repeat: repeat-x;
  background-position: left center;
  min-height: 15px;
  padding: 10px 10px;
  font-size: 12px;
  color: palevioletred;
  margin-bottom: -10px;
  border-radius: 0 0 10px 10px; 
}


table {
        font-size: 8pt;
        letter-spacing: 0.7pt;
        line-height: 113%;
        color: inherit;
        border-spacing: 1.5px;
        background-color: #ffffff;
        border-width: 1px; /* change border width */
        border-style: outset; /* change border style */
        border-color: #fff;
        margin: 20px;
        padding: 0.5px;
        
    }

    td {
        border:0.5px  #fff;
        text-align: left;
        padding: 5px;
        border-style: inset;
    }
    
    .icon {
  display: inline-block;
  height: 1.4em;
  width: 1.4em;
  margin: 0 .05em 0 .1em;
  vertical-align: -0.3em;
  color: rgba(0, 0, 0, 0);
}

sub{
  color:palevioletred;
  margin-top: -20px;
  }
  
  
h3{
  color: darkslateblue;
  text-align: center;
  font-size: 30pt;
  padding: 5px;
  margin-bottom: -10px;
    margin-top: 0px;
  font-family: 'Mountains of Christmas';
}

h2{
  color: darkslateblue;
  text-align: center;
  font-size: 14pt;
  padding: 5px;
  margin-bottom: -18px;
    margin-top: -25px;
  font-family: 'schoolbell';
}

hr {
    border: none;
    height: 1px;
    background-image: linear-gradient(45deg, plum, tan, linen);
  }
  
.entry {
padding:22px
}

.entrybox {
  border: 1px solid tan;
  margin: 50px
}

