/* 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." */
@font-face {
    font-family: Daydream;
    src: 
        url('assets/fonts/Daydream.ttf') format('ttf'),
        url('assets/fonts/Daydream.woff') format('woff'),
        url('assets/fonts/Daydream.otf') format('otf'); 

}

body {
  font-family: 'courier new', sans-serif;
  margin: 0;
  padding: 0;
  height: 100vh;  
  background: 
    url('../../../assets/imgs/clouds/cloudbg2.svg') no-repeat 0% 100% / contain, 
    url('../../../assets/imgs/mainHub/rainbow.svg') no-repeat center / contain #0b031f;
    

  overflow-y: hidden;
  z-index: -1;
  font-size: 18px;
  font-family: Georgia, "Times New Roman", serif;
 
}

#girlTiger {
  position: fixed;
  right: -50px;
  bottom: 0;
  width: 400px;
  z-index: 1;
}

#shroomies {
  position: fixed;
  left: 25px;
  bottom: 0;
  width: 220px;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
  font-weight: 100;
  font-family: 'Courier New', Courier, monospace;
}

#postDate {
  font-weight: bolder;
}


hr {
  border: solid #ff5ac4;
  border-width: 2px 0 0 0;
}

h1 {
  font-size: 1.5em; /* Approximately 32px */
  margin-block-start: 0.67em;
  margin-block-end: 0.67em;
}

h2 {
  font-size: 1em; /* Approximately 24px */
  margin-block-start: 0.75em;
  margin-block-end: 0.75em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: Daydream;
    text-decoration: none;
    color: #ad73ff;
}

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:hover { 
  color: #7e21ff;
}

#recentpostlistdiv a:hover {
  background-color: #7e21ff;

}

#nextprev {
  font-family: 'Courier New', Courier, monospace;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 950px;
	background-color: #150738;
  color: #e9e0ff; 
  outline-color: #a160fd;
  outline-style: solid;
  border-radius: 5px;
  outline-width: 4px;
  outline-offset: 0;
  max-height: 70%;
  overflow-y: scroll;
 
}

#container a {
  color: #7b1dff;
  text-decoration: none;
}

#container a:hover {
  text-decoration: none;
  color: #ff5ac4;
  
}


#content {
  padding: 10px 5% 20px 5%;
  

}


/*HEADER STYLE*/
#header {
  background-color: #a160fd;
  position: sticky;
  top: 0;
  padding: 0 3%;
  border-color: #a160fd;
  border-style: solid;
  border-width: 0 0 4px 0;
  font-family: 'courier new', sans-serif;
  font-weight: bold;
}
#header ul {
  list-style-type: none;
  padding: 0.1em 0;
  margin: 0;
}
#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.25em;
}
#header li a {
  color: #e9e0ff;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: none;
  color: #730fff;
}

/*POST LIST STYLE*/
#postlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
  font-family: 'courier new', sans-serif;
}
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
  font-family: 'courier new', sans-serif;
}


.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/*NEXT AND PREVIOUS LINKS STYLE*/
#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/*DISQUS STYLE*/
#disqus_thread {
  margin-top: 1.6em;
}

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
}

#backtoCl {
    height: 13vh; 
    position: fixed; 
    z-index: 9; 
    left: 2vh; 
    top: 2vh;
    transition-duration: .5s; 
}
#backtoCl:hover {
    transition-duration: .5s;
    scale: 1.1;
}