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



body {
  background-color: #436a7b;
  background-image: url('https://kikiblog.neocities.org/bgBB.jpeg');
  background-position: top;
  font-size: ;
  font-family: Indie-Flower, "Indie Flower", serif;
  margin: 0;

  /* Center the container */
  display: flex;
  justify-content: center;
  align-items: center;
  
  min-height: 100vh; /* makes sure it’s centered vertically */
}

p {
  line-height: 1.6em;
  font-size: 27px;
  padding-right:30px;
}

hr {
  border: solid #c7b591;
  border-width: 2px 0 0 0;
}

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;
}

/* LINKS */
a {
  color: #e00074;
  text-decoration: none;
  font-size: 27px;
  margin-right: 20px;
}

a:hover {
  color: #8f014a;
  background-color: transparent;
}

h1, h2, h3, h4, h5 {
  font-family: Indie Flower, Indie Flower, sans-serif;
  font-weight:bolder;
  font-size:40px;
  color: #34436f;
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
  #container {
  background:
    linear-gradient(rgba(255, 228, 153, 0.6), rgba(255, 228, 153, 0.6)),
    url("https://api.filegarden.com/users/682d216a1e0f3e09d4ce9523/pipe/aNsK1RmICTXLngyo/download/IMG_6899.jpeg");
  background-size: 800px 600px;
  background-position: -90px -40px;
  width: 900px;
  min-height: 500px;
  border-radius: 25px;
  border: 3px solid #ffe8f3;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1), 0 10px 20px rgba(255, 255, 255, 0.2);
  display: flex;
  flex-direction: column; /* header on top */
  overflow: hidden;
  
  animation: floaty 2s infinite ease-in-out;
}

#content {
  padding: 10px 5% 20px 5%;
}

/* HEADER */
#header {
  background-color: #7a4f35;
  padding: 1em;
  border-bottom: 4px ridge #a9a9a9;
  text-align: center;
}

#header ul {
  list-style-type: none;
  padding: 0.5em 0;
  margin: 0;
}

#header li {
  font-size: 1.2em;
  display: inline-block;
  margin-right: 1.5em;
  margin-bottom: 0.2em;
  margin-top: 0.2em;
}

#header li a {
  color: white;
}

#header li a:hover {
  color: pink;
  text-decoration: underline;
}

/* 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 {
  text-align: center;
  margin-top: 1.4em;
}

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

/* FOOTER REMOVED */
#footer {
  display: none;
}
