/* 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 IMPORT */
@import url('https://fonts.googleapis.com/css2?family=Margarine&display=swap');
  
/* -------------------------------------------------------- */
/* VARIABLES */
/* -------------------------------------------------------- */

/* Variables are used like this: var(--text-color) */
:root {
  /* Background Colors: */
  --background-color: #f5f5f5;
  --content-background-color: #ffffff;
  --sidebar-background-color: white;

  /* Text Colors: */
  --nav-color: white;
  --text-color: #000000;
  --sidebar-text-color: black;
  --link-color: #FF6F59;
  --link-color-hover: white;

  /* Text: */
  --font: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, メイリオ, Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', 'ＭＳ ゴシック' , 'MS Gothic', 'Noto Sans CJK JP', TakaoPGothic, sans-serif;
  --heading-font: 'Margarine', sans-serif;
  --font-size: 1em;

  /* Other Settings: */
  --margin: 10px;
  --padding: 20px;
  --border: 4px dotted #30d5e3;
  --round-borders: 20px;
  --sidebar-width: 180px;
}

*{
  cursor: url(http://www.rw-designer.com/cursor-extern.php?id=6921), auto;
}

body {
  background-color: var(--background-color);
  background-image: url("https://i.pinimg.com/736x/22/6e/0d/226e0d9f528566f0e9d15def68f04f01.jpg");
	background-position: top;
  font-size: var(--font-size);
  font-family: var(--font);
  color: var(--text-color);
  margin: 0;
}

marquee {
  color: var(--text-color);
  font-family: var(--font);
  font-size: var(--font-size);
  margin-bottom: 0.5em;
  overflow: hidden;
  white-space: nowrap;
}

p {
  line-height: 1.6em; /*I find the default HTML line-height tends to be a bit claustrophobic for main text*/
}

.header-title {
  font-family: var(--heading-font);
  font-size: 1.5em;
  font-weight: bold;
}

.header-image img {
  width: 100%;
  height: auto;
}

/* -------------------------------------------------------- */
/* NAVIGATION */
/* -------------------------------------------------------- */

.nav-button {
  border: 1px solid #F9A075;
  border-radius: 4px;
  color: #FFFFFF;
  display: block;
  font-size: 17px;
  min-width: 30px;
  padding: 4px 15px;
  text-align: center;
}

.nav-button:focus {
  box-shadow: rgba(131, 192, 253, 0.5) 0 0 0 3px;
  outline: none;
  text-decoration: none;
}

/* Links: */
a {
  cursor: url(http://www.rw-designer.com/cursor-extern.php?id=6925), pointer;
  text-decoration: none;
}

a,
a:visited {
  color: var(--link-color);
}

a:hover,
a:focus {
  color: white;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000,
          -1px 1px 0 #000, 1px 1px 0 #000;
  text-decoration: none;
}



hr {
  border: 0;
  border-top: var(--border);
  margin: 1.5em 0;
}

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

h1, h2, h3, h4, h5 {
  font-family: var(--heading-font);
  font-weight: bold;
  color: var(--text-color);
}

/*#CONTAINER is the rectangle that contains everything but the background!*/
#container {
  margin: 3em auto;
  width: 90%;
	max-width: 700px;
	border: 4px solid white;
  border-radius: var(--round-borders);
  background-color: var(--content-background-color);
}

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


/*HEADER STYLE*/
#header {
  background-image: linear-gradient(#F9A075, #D14B49);
  padding: 0 5%;
  border-radius: var(--round-borders);
  text-decoration: none;
}
#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;
  text-decoration: none;
  background-color: inherit;
}
#header li a:hover {
  text-decoration: none;
}

/*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;
  text-decoration: none;
}

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

/*FOOTER STYLE*/
#footer {
  font-size: 0.8em;
  padding: 0 5% 10px 5%;
  justify-content: center;
}

/* -------------------------------------------------------- */
/* CONTENT IMAGES */
/* -------------------------------------------------------- */

.image {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.full-width-image {
  display: block;
  width: 100%;
  height: auto;
}

.images {
  display: flex;
  width: calc(100% + 5px + 5px);
  margin-left: -5px;
  margin-right: -5px;
}

.images img {
  width: 100%;
  height: auto;
  padding: 5px;
  margin: 0;
  overflow: hidden;
}