/* ============================= */
/* ✦ PAGE BACKGROUND ✦ */
/* ============================= */

body {
  margin: 0;
  font-size: 18px;
  font-family: "Comic Sans MS", "Comic Sans", sans-serif;
  background-color: white;
  background-image: url('../images/bg_springSweetheart.jpg');
  background-position: top;
  color: #752a49;
}

/* ============================= */
/* ✦ MAIN CONTAINER ✦ */
/* ============================= */

#container {
  margin: 3em auto;
  width: 90%;
  max-width: 700px;
  background-color: #fbceed;
  outline-offset: 5px;
  outline-width: 5px;
  outline-style: double;
  outline-color: #fb95db;
  border: 3px solid #fb95db;
}

/* ============================= */
/* ✦ HEADER / NAV BAR ✦ */
/* ============================= */

#header {
  background-color: #e3e7fd;
  padding: 0 5%;
  border-style: double;
  border-width: 0 0 5px 0;
  border-color: #fb95db;
}

#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: #5870c8;
  font-weight: bold;
  text-decoration: none;
}

#header li a::before {
  content: "🌸 ";
}

/* ============================= */
/* ✦ MAIN CONTENT ✦ */
/* ============================= */

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

p {
  line-height: 1.6em;
}

img {
  max-width: 100%;
  height: auto;
  margin-top: 0.5em;
  margin-bottom: 0.5em;
}

/* ============================= */
/* ✦ LINKS ✦ */
/* ============================= */

a {
  color: #4652a7;
}

a:hover {
  text-decoration: none;
  background-color: white;
}

/* ============================= */
/* ✦ DIVIDERS ✦ */
/* ============================= */

hr {
  border-width: 5px 0 0 0;
  border-style: dotted;
  border-color: #fb95db;
}

/* ============================= */
/* ✦ FOOTER ✦ */
/* ============================= */

#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
  text-align: center;
}

/* ============================= */
/* ✦ POST LIST (for archive pages) ✦ */
/* ============================= */

#postlistdiv ul,
#recentpostlistdiv ul {
  font-size: 1.2em;
  padding: 0;
  list-style-type: none;
}

.moreposts {
  font-size: 0.8em;
  margin-top: 0.2em;
}

/* ============================= */
/* ✦ NEXT/PREV LINKS ✦ */
/* ============================= */

#nextprev {
  text-align: center;
  margin-top: 1.4em;
}

/* ============================= */
/* ✦ MOBILE FRIENDLY ✦ */
/* ============================= */

@media only screen and (max-width: 600px) {
  #container {
    margin: 1.5em auto;
  }

  #header li {
    display: block;
    margin-right: 0;
  }
}