@import url("https://fonts.googleapis.com/css?family=Share+Tech+Mono|Montserrat:700");

a {
  color: #613DC1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

body {
  max-width: 800px;
  margin: auto;
  padding: .2em;
  line-height: 1.5em;
}

/* FOOTER */
footer a { text-decoration: none; }

.footer-bar, .footer-bar ul{
  list-style-type: none;
  text-align:center;
}

.footer-bar li {
  display:inline-block;
  padding:10px;
}

h1 {
    font-size: 50px;
    line-height:100%;
    text-align: center;
    color: #000000;
    text-shadow: 0 0 50px rgba(0, 0, 0, 0.07);
    top: 50%;
/*    transform: translateY(-50%);*/
    font-family: "Montserrat", monospace;
}

h2 {
  font-family: "Montserrat", monospace;/*font-family: "Share Tech Mono", monospace;*/
  color: #000000;
  font-size: 25px;
  display:inline;
}

/* HEADER */
header {
    position: relative;
    width: 100%;
    height: 1.75rem;
    font-family: "Lucida Console" , "Liberation Mono";
    font-size: .875rem;
    background: #613DC1;
    border-bottom: 1px solid #000;
}

header ul,
header ol {
    margin: 0;
    padding: 0;
    list-style: none
}
header {
    padding: 0 0.5rem
}

header a {
    color: #fff;
    line-height: 1.75rem;
    padding: 0 0.5rem
}
header a:hover,
header .current a {
    color: #fff
}

main { hyphens: auto; }

/* MOOD BAR */
span.emoji {
  font-size:30px;
  vertical-align:middle;
}

img.custom-icon {
  width:40px;
  vertical-align: middle;
}

#mood, #tags {
  width:40px;
  vertical-align: baseline;
  background-color:#B695C0;
  border-radius: 10px;
  padding:10px 10px 10px 10px;
  display:inline;
}

span.mood-text, span.tag-text {
  font-size:12px;
  text-transform: uppercase;
  font-weight:bolder;
  text-decoration-style;
  text-align: center;
  vertical-align:middle;
  display:inline-block;
}

span.mood-text::after, span.tag-text::after {
  content: ":";
}

/* https://www.w3schools.com/howto/howto_css_tooltip.asp */

#mood {
  position: relative;
}

#mood .tooltiptext {
  visibility: hidden;
  width: 120px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px 0;
  position: absolute;
  z-index: 1;
  bottom: 125%;
  left: 50%;
  margin-left: -60px;
  opacity: 0;
  transition: opacity 0.3s;
}

#mood .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

.tooltiptext {
  font-size:14px;
}

#mood:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}

/* Navigation */
.next {
  float:right;
}

.previous {
  float:left;
}

.pull-left {
    float: left
}
.pull-right {
    float: right
}

/* TAGS */

#tags {
  background-color:#fff;
}

.tags {
  vertical-align: middle;
  border: solid 1px;
  font-size:0.7rem;
  background-color:#D2D6EF;
  color:#613DC1;
  font-weight:bold;
  padding:2px 5px 2px 5px;
  margin:5px;
  border-radius:5px;
}

.tag-box {
  margin-left:40px;
  white-space: nowrap;
}
