/* 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');

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


body {
  color: lightpink;
  background-color: black;
  background-image: url(https://files.catbox.moe/k4atvk.png);
  font-family: MS PGothic;
  font-size: 15px;
  cursor: url("https://files.catbox.moe/ix7oep.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: 14px;
    padding: 10px;
}

a {
    color: #b98065;
}

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

h1 {
    font-family: 'Emilys Candy';
    font-weight: 200;
    text-align: center;
    font-size: 85px;
    margin-bottom: -15px;
    background-image: linear-gradient(white, sienna);
    color: transparent;
    background-clip: text;
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  background-image: linear-gradient(deeppink 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: mediumvioletred;
    background-image: linear-gradient(lightpink 0%, mediumvioletred 40%);
  background-repeat: repeat-x;
  background-position: left center;
}

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

.container {
  display: grid;
  grid-template-areas:
    "header header header"
    "menu content menu2"
    "footer footer footer";
  grid-template-columns: 1fr 4fr 1fr;
  gap: 12px;
  background-color: black;
  background-image: linear-gradient(black, hotpink);
  padding: 20px;
  margin-left: 20%;
  margin-right: 20%;
}
.container > div {
background-image: linear-gradient(#75004c 0%, black 45%);
  padding: 0px;
}
.header {
  grid-area: header;
  text-align: center;
}
.menu {
  grid-area: menu;
  height: 255px;
  width: 180px;
  overflow: auto;
        overflow-wrap: break-word;
        scrollbar-color: #b98065 black;
        scrollbar-width: thin;
}
.menu2 {
  grid-area: menu2;
}
.content {
  grid-area: content;
}
.footer {
  grid-area: footer;
}

.footerbg {
  background-image: linear-gradient(black 0%, #75004c 80%);
}

img {
    margin-bottom: -5px;

}

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

sub{
  color:white
  }
  
hr {
    border: none;
    height: 1px;
    background-image: linear-gradient(45deg, white, deeppink, black);
  }
  
  
  
  
  
  
  
  
  
  
  
