a {
  color: #7D8776;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

/*body*/

body {
  background-image: url('/images/fondo amarillo.jpeg');
  background-size: 300px; 
  background-repeat: repeat;
  font-family: 'rainy hearts', sans-serif;
  min-height: 100vh;
  color: #b29c91;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  box-sizing: border-box;
  padding: 20px;
  overflow-x: hidden;
  width: 100%;
}

mark {
 background-color: #fbe7f0;
 color: #606060;
}

h1 {
  font-family: 'flyover', serif;
  color: #f1b3bd;
}

h2, h3 {
  font-family: 'gentle remind', serif;
  color: #6c564b;
}

/* fonts */

@font-face {
   font-family: 'rainy hearts'; 
  src: url('/fonts/rainyhearts.woff2') format('woff2'), 
       url('/fonts/rainyhearts.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
   font-family: 'gentle remind'; 
  src: url('/fonts/Gentle Remind.woff2') format('woff2'), 
       url('/fonts/Gentle Remind.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
   font-family: 'flyover'; 
  src: url('/fonts/Flyover.woff2') format('woff2'), 
       url('/fonts/Flyover.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

@font-face {
   font-family: 'cutesy'; 
  src: url('/fonts/Cutesy.woff2') format('woff2'), 
       url('/fonts/Cutesy.ttf') format('truetype'); 
  font-weight: normal;
  font-style: normal;
}

.bottom-area,
.footer {
  background: none !important;
  border: none !important;
  box-shadow: none !important;
  font-family: arial;
  font-size: 12px;
  font-weight: 600;
  color: #8d7c76;
}



/* scrollbar */

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #fff7fa;
  -webkit-border-radius: 0ex;
  border: 1px dotted #edaecb;
}

/* selection */

::selection {
  background-color: #fef4fa;
  color: #8d7c76;
}

::-moz-selection {
  background-color: #fef4fa;
  color: #8d7c76;
}



a {
  text-decoration: none;
  color: #67807a;
  transition: .1s
}

a:link {
  color: #545454;
  background-color: transparent;
  text-decoration: none;
}

a:visited {
  color: #545454;
  background-color: transparent;
  text-decoration: none;
}

a:hover {
  color: #ffe8e9;
  background-color: transparent;
  text-decoration: dotted underline;
  font-style: italic;
}

a:active {
  color: #545454;
  background-color: transparent;
  text-decoration: underline;
}

/* tooltip */

#s-m-t-tooltip {
  max-width: 300px;
  border-radius: 0px;
  padding: 3px 4px 5px 4px;
  margin: 10px 7px -2px 10px;
  background-color: #FEF8FC;
  border: 1px dotted #AAAAAA;
  font-family: 'cutesy';
  font-size: 7px;
  letter-spacing: 2px;
  color: #545454;
  position: relative;
  z-index: 100000 !important;
  pointer-events: none;
  text-align: center;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

ul {
  list-style: none;
}

#context_menu {
  background: #FEF8FC;
  border: 1px dotted #AAAAAA;
  letter-spacing: 1px;
  width: 70px;
  font-family: 'gentle remind';
  font-size: 8px;
  position: absolute;
  display: none;
  z-index: 100000;
}

#context_menu ul li {
  padding: 4px;
  z-index: 100000;
}

#context_menu ul li:hover {
  background: #FEF8FC;
  color: #848484;
  z-index: 100000;
}

/* MAIN CONTAINER */

.post-card {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  background: white;
  border-radius: 15px 0 15px 15px;
  padding: 6px 10px;
  border: 1px solid lightgray;
  box-sizing: border-box;
}

/* HEADER */
.post-header {
  display: flex;
  align-items: center;
}

/* NAME + STATUS GROUP */
.user-info {
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.status-left {
  margin-right: auto;
}

.status-left img {
  display: block;
  width: 13px;
  height: 13px;
}

.post-title img {
  display: block;
  width: 13px;
  height: 13px;
}

.inline-image {
  float: left;
  margin-right: 10px;
  width: 40px;
  height: auto;
}

/* NAME */
.post-header h3 {
  margin: 0;
  font-size: 12px;
  font-weight: 600;
  color: #606060;
}

.post-header h3:before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 20px;
  margin-right: 15px;
  margin-left: 5px;
  background-image: url('/images/gif/heart.gif');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* STATUS */
.status {
  background: #fbe7f0;
  color: #606060;
  font-size: 10px;
  padding: 2px 5px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.post-title {
  color: #f1b3bd;
  font-size: 16px;
  padding: 2px 5px;
  border-radius: 8px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'flyover';
  letter-spacing: 0.2px;
}


/* AVATAR */
.blog-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid lightgray;
}

/* TEXT */
#text {
  line-height: 1.25em;
  padding: 2px;
  background-color: white;
  margin: 4px;
}

/* FOOTER */
.post-footer {
  font-size: 10px;
  color: #8c8c8c;
  margin-left: 5px;
  margin-bottom: 2px;
}

/* LEFT ALIGN RULE */
.container,
h3,
#blog-icon {
  text-align: left;
}

.entries {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 5px;
  margin: 8px 0;
}

.microblog-wrap {
  width: 100%;
  box-sizing: border-box;
  padding: 2px 8px;
  margin-left: auto;
  margin-right: 12px;
}

.microblog-scroll {
  height: calc(100% - 15px);
  margin-top: 5px;
  margin-bottom: 5px;
  overflow-y: auto;
  box-sizing: border-box;
  overflow-x: hidden;
}