@import url('https://fonts.googleapis.com/css?family=Cherry Bomb One|Itim|Coral Pixels|Special Elite|Silkscreen|Press Start 2P|Sour Gummy|Jacquard 12|Cookie|Darumadrop One');
@import url('https://use.fontawesome.com/releases/v5.8.1/css/all.css');

body {
  height: auto;
  width: 310px;
  background-color: transparent;
  background-image: url(https://heathersaturnia.neocities.org/pxls/deco/dshbkgrnd.png);
  opacity: 95%;
  overflow: scroll;
  overflow-x: hidden;

  padding: 5px;
}



#header {
  width: 298px;
  height: 30px;
  border-radius: 4px;
  background: url(https://heathersaturnia.neocities.org/pxls/icns/tapelbl.png) no-repeat;
  background-size: 300px 32px;
  position: relative;
  margin-bottom: 5px;
}

#header::after {
  content: "microblog";
  position: absolute;
  left: 18px;
  bottom: 4px;
  font-family: Silkscreen;
  font-size: 15px;
  color: #000000;
}




.status {
  position: relative;
  margin-bottom: 16px;
  padding: 30px 10px 40px 10px; 
  background-color: #ffffff;
  background-image: url("https://heathersaturnia.neocities.org/pxls/icns/pprlbl-mddle.png");
  background-repeat: repeat-y;
  background-size: 300px 32px;
  width: 300px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  image-rendering: pixelated;
  z-index: 1;
}

.status p,b,u,i {
    font-family: Itim;
    font-size: 12px;
    text-justify: inter-word;

}
.status p {
    color: #000000;
}
.status b {
  font-family: Itim;
    font-weight: bold;
    color: var(--accent);
}
.status u {
    color: #000000;
}

.status i {
    color: #000000;
    font-style: italic;
}


.status::before,
.status::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 32px;
  background-repeat: no-repeat;
  background-size: 300px 32px;
  image-rendering: pixelated;
  pointer-events: none;
  z-index: 0;
}

.status::before {
  top: 0;
  background-image: url("https://heathersaturnia.neocities.org/pxls/icns/pprlbl-top.png");
}

.status::after {
  bottom: 0;
  background-image: url("https://heathersaturnia.neocities.org/pxls/icns/pprlbl-bottm.png");
}

.mood-icon {
  float: right;
  max-height: 60px;
  width: auto;
  margin-left: 10px;
  margin-bottom: 5px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  image-rendering: pixelated;
}


.status-topbar {
  background: var(--accent);
  border: 1px solid black;
  padding: 2px;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  text-align: right; 
  position: relative; 
  line-height: 13px;
  font-weight: bold;
 
}



.datetime {
  color: #ffffff;
  vertical-align: bottom; 
   margin-bottom: -9px; 
  display: inline-block;
  text-shadow:
    -1px -1px 0 #000000,
     1px -1px 0 #000000,
    -1px  1px 0 #000000,
     1px  1px 0 #000000;
}
.at-text {
  color: #000000; 
  display: inline-block;
  margin-bottom: -9px; 
  vertical-align: bottom;
  text-transform: uppercase;
 font-family: 'Silkscreen';
  text-shadow:
    -1px -1px 0 #ffffff,
     1px -1px 0 #ffffff,
    -1px  1px 0 #ffffff,
     1px  1px 0 #ffffff;
}




.pshpin {
  height: 13px;
  width: auto;
  image-rendering: pixelated;
  vertical-align: middle;
}

.left-pin::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: var(--pushpin);
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  vertical-align: middle;
  margin-right: 4px;
}


.right-pin::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  background-image: var(--pushpin);
  background-size: contain;
  background-repeat: no-repeat;
  image-rendering: pixelated;
  vertical-align: middle;
  margin-left: 4px;
  transform: scaleX(-1); 
}



.time-icon {
  height: 20px;
  width: auto;
  image-rendering: pixelated;
  vertical-align: top;
  margin-right: 6px;
  display: inline-block; 
}


.left-pin,
.time-icon {
  float: left;
}
.right-pin {
  float: right;
}



.status-divider {
  display: block;
  margin: -5px auto 5px 65px;
  image-rendering: pixelated;
}

#scrollToTop {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-position: center;
  image-rendering: pixelated;
  margin: -15px 0 0 290px;
  display: block;
  cursor: pointer;
  position: relative;
  z-index: 99999;
}

#scrollToTop::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--detailarrow);
  background-size: contain;
  background-repeat: no-repeat;
  transform: rotate(-90deg);
  transition: transform 0.2s ease-in-out, filter 0.2s ease-in-out;
}


#scrollToTop:hover::before {
  transform: rotate(-90deg) scale(1.5);
  filter: brightness(1.2);
}

#scrollToTop:hover::after {
  content: "Top";
  position: absolute;
  left: 50%;
  bottom: 120%;
  transform: translateX(-50%);
  font-family: 'Silkscreen', monospace;
  font-size: 11px;
  background: var(--accent);
  color: #ffffff;
  padding: 3px 7px;
  border-radius: 4px;
  z-index: 999;
}

* {
  scrollbar-width: thin;
  scrollbar-color: var (--accent) transparent;
}