body {
  background-image: url('https://heyloura.com/uploads/2023/bc3d9891f2.jpg');
  font-family: Inconsolata, monospace;
  padding: 0;
  margin: 0;
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.terminal {
  width: 70vw;
  height: 70vh;
  box-shadow: 2px 4px 10px rgba(0,0,0,0.5);
  margin-top:2em;
  max-width: 700px;
}

.terminal__bar {
  display: flex;
  width: 100%;
  height: 30px;
  align-items: center;
  padding: 0 8px;
  box-sizing: border-box;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background: linear-gradient(#504b45 0%,#3c3b37 100%);
}

.bar__buttons {
  display: flex;
  align-items: center;
}

.bar__button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin-right: 5px;
  font-size: 8px;
  height: 16px;
  width: 16px;
  box-sizing: border-box;
  border: none;
  border-radius: 100%;
  background: linear-gradient(#7d7871 0%, #595953 100%);
  text-shadow: 0px 1px 0px rgba(255,255,255,0.2);
  box-shadow: 0px 0px 1px 0px #41403A, 0px 1px 1px 0px #474642;
}
.bar__button:hover {
  cursor: pointer;
}
.bar__button:focus {
  outline: none;
}
.bar__button--exit {
  background: linear-gradient(#f37458 0%, #de4c12 100%) !important;
  background-clip: padding-box;
}
.bar__button--min {
  background: linear-gradient(#fab387 0%, #eba0ac 100%) !important;
  background-clip: padding-box;
}

.bar__user {
  color: #d5d0ce;
  margin-left: 6px;
  font-size: 14px;
  line-height: 15px;
}

.terminal__body {
  background: rgba(0, 0, 0, 0.85);
 /* font-family: 'Ubuntu Mono'; */
  height: calc(100% - 30px);
  padding: 5px;
  margin-top: -1px;
  color: #dddddd;
  overflow: auto;
}

.terminal__folder {
  background: rgba(232, 234, 240, 0.85);
 /* font-family: 'Ubuntu Mono'; */
  height: calc(100% - 30px);
  padding: 5px;
  margin-top: -1px;
  color: #11111b;
  overflow: auto;
}

.terminal__prompt {
  display: flex;
  padding-bottom: .5em;
  margin: 0.2em;
}
.terminal__prompt--user {
  color: #a6e3a1;
}
.terminal__prompt--location {
  color: #74c7ec;
}
.terminal__prompt--bling {
  color: #dddddd;
}
.terminal__prompt--contents {
  color: #dddddd;
  line-height: 20px;
  padding: 12px 0;
}
.terminal__prompt--cursor {
  display: block;
  height: 17px;
  width: 8px;
  margin-left: 9px;
  animation: blink 1200ms linear infinite;
}

@keyframes blink {
  0% {
    background: #ffffff;
  }
  49% {
    background: #ffffff;
  }
  60% {
    background: transparent;
  }
  99% {
    background: transparent;
  }
  100% {
    background: #ffffff;
  }
}

@media (max-width: 600px) {
  .terminal {
    height: 90%;
    width: 95%;
  }
  .warning {
    display: none;
  }
  ul {
    padding-left: 20px;
  }
}

dialog {
    background: none;
    border: none;
    box-shadow: none;
    padding: 0;
    overflow: hidden;
}

dialog::backdrop {
    background: rgba(0, 0, 0, 0.5);
}


.header {
  height: 1px;
  background: yellow;
}


.sidebar {
  width: 200px;
  /* height: 800px; */
  /* background: orange; */
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr; 
  gap: 0px 0px; 
  grid-template-areas: 
    ". ."
    ". ."
    ". ."
    ". ."
    ". ."
    ". ."; 
}

.footer {
    border-top: 2px solid #595953;
    border-right: 2px solid #595953;
    background: linear-gradient(#7d7871 0%, #595953 100%);
    text-shadow: 0px 1px 0px rgba(255,255,255,0.2);
    box-shadow: 0px 0px 1px 0px #41403A, 0px 1px 1px 0px #474642;
    height: 30px;
}

.app {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    height: 90px;
    border: 2px solid rgba(0,0,0,0);
}

.app:hover {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 2px solid #595953;
}

.active {
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    border: 2px solid #595953;
}

.app__name {
    margin-top: -8px;
}

.statuslol_container {
    margin: 1.5em auto;
}

a {
    color: #89b4fa;
}
a:visited{
    color: #cba6f7;
}

a.app {
    color: black;
    text-decoration: none;
}

.terminal__launch {
    height: 25px;
    padding: 0px 0.5em;
    margin: 2px 1em;
    border: #595953;
    color: #cdd6f4;
    background-color: #313244;
}

.warning {
    position: fixed;
    bottom: 60px;
    right: 30px;
    padding: 1em;
    color: black;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 1em;
    box-shadow: inset 0 0 1em #a6e3a1;
    border: 1px solid black;
}

.warning a, .sticky-content a { color: #209fb5;}
.warning a:visited, .sticky-content a { color: #8839ef;}

.photo {
    border: 5px solid black;
    border-radius: 1em;
}

.folder {
  display: grid; 
  grid-template-columns: 1fr 1fr 1fr 1fr; 
  grid-template-rows: 1fr 1fr 1fr 1fr; 
  gap: 0px 0px; 
  grid-template-areas: 
    ". . . ."
    ". . . ."
    ". . . ."
    ". . . ."; 
}

.bookshelf_title {
    font-weight: bold;
}

.terminal__body, .terminal__folder {
  /* Foreground, Background */
  scrollbar-color: #595953 #333;
}
.terminal__body::-webkit-scrollbar, .terminal__folder::-webkit-scrollbar {
  width: 10px; /* Mostly for vertical scrollbars */
  height: 10px; /* Mostly for horizontal scrollbars */
}
.terminal__body::-webkit-scrollbar-thumb, .terminal__folder::-webkit-scrollbar-thumb  { /* Foreground */
  background: #595953;
}
.terminal__body::-webkit-scrollbar-track, .terminal__folder::-webkit-scrollbar-track { /* Background */
  background: #333;
}

.microblog_post {
    margin: 1em;
    padding-bottom: 1em;
    border-bottom: 2px solid #595953;
}
.microblog_time {
    text-align: right;
}
.photos-grid-container {
    padding:0.25em;
    display: grid; 
    grid-column-gap: 0.25em; 
    grid-template-columns: 33% 33% 33%;
}
li {
margin:1em 0.25em;
}
.e-content img, .e-content video {
width: 100% !important;
max-width: 600px !important; 
border-radius: 1em;
}
table, th, td {
  border: 2px solid #595953;
  border-collapse: collapse;
}
section.terminal__body > div > div > ul > li {
margin: 0.05em 0.25em;
}
section.terminal__body > div > div > img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    border-radius: 0.5em;
}
pre {
 padding: 0.5em;
 background-color: rgba(0,0,0,1);
 white-space:pre-wrap;
}
code {
background-color: rgba(0,0,0,1);
padding: 0.25em;
color: #fab387;
}
mark {
background-color: #f9e2af;
}

.bookmark {
    background: rgba(0, 0, 0, 0.85);
    padding: 0.5em;
    border-radius: 0.5em;
}

.bookmark blockquote {
  border-left: 5px solid #74c7ec;
  margin-left:0px;
  padding-left: 1em;
}

.bookmark figcaption {
  padding-bottom: 1em;
  text-align:right;
}

.post-list {
   list-style: none;
   padding: 0;
}
.post-list li {
    border-bottom: 2px solid black;
    padding: 1em;
}
.e-content li {
    border-bottom: none;
    padding: 0;
    margin: 0.5em 0;
}
.category-link {
font-size: 0.8em;
}
/* Some positioning and ratios */
.sticky-container {
  max-width: 270px;
}

.sticky-outer {
  display: flex;
  padding-top: 92.5925926%;
  position: relative;

  width: 100%;
}

.sticky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

/* Shadow behind the sticky note */
.sticky:before {
  box-shadow: -2px 2px 15px 0 rgba(0, 0, 0, 0.5);
  background-color: rgba(0, 0, 0, 0.25);
  content: '';
  width: 90%;
  left: 5px;
  height: 75%;
  position: absolute;
  top: 30%;
}

/* The sticky note itself */
.sticky-content {
  background: linear-gradient(
    180deg,
    rgba(187, 235, 255, 1) 0%,
    rgba(187, 235, 255, 1) 12%,
    rgba(170, 220, 241, 1) 75%,
    rgba(195, 229, 244, 1) 100%
  );
  width: 100%;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);

  padding: 1em;
  display: flex;
  justify-content: center;
  align-items: center; 
  font-size: 0.9rem;

  clip-path: url(#stickyClip);
}

.sticky-note {
    width: 150px;
    position: fixed;
    top: 5px;
    right: 35px;
  }

  .sticker-spot {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    display: none;
    place-content: center;
    line-height: 0.95;
    color: var(--c5);
     z-index: -1000;
  }

@media screen and (min-width: 640px) {
  .sticky-note {
    width: 250px;
    position: fixed;
    top: 20px;
    right: 80px;
  }

  .sticker-spot {
    display: grid;
  }
}

@media screen and (min-width: 1024px) {
  .sticky-note {
    width: 300px;
    position: fixed;
    top: 30px;
    right: 50px;
  }
}

.tiny {
    font-size: 0.7em;
}
.sticker {
  --c1: #ef548f;
  --c2: #ef8b6d;
  --c3: #cfef6b;
  --c4: #3bf0c1;
  --c5: #bb4af0;
  --shine-angle: 15deg;
  display: inline-grid;
  grid-template-areas: "text";
  place-items: center;
  font-family:  Superclarendon, 'Bookman Old Style', 'URW Bookman', 'URW Bookman L', 'Georgia Pro', Georgia, serif;
  font-weight: 900;
  font-size: clamp(1.5rem, 7.5vw, 5rem);
  text-transform: uppercase;
  color: var(--c5);
}
.sticker-lg {
  font-size: clamp(6rem, 30vw, 20rem);
}
.sticker span {
  background: linear-gradient(var(--shine-angle), rgba(255, 0, 0, 0) 0%, rgba(255, 0, 0, 0) 35%, rgba(255, 255, 255, 0.98) 49.95%, rgba(255, 255, 255, 0.98) 50.15%, rgba(255, 0, 0, 0) 65%, rgba(255, 0, 0, 0)), linear-gradient(to right, var(--c1), var(--c2), var(--c3), var(--c4), var(--c5));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  -webkit-text-stroke: 0.01em rgba(0, 0, 0, 0.6);
  line-height: 1.1;
}
.sticker > *, .sticker::before, .sticker::after {
  grid-area: text;
}
.sticker::before, .sticker::after {
  content: attr(data-text);
  color: #fff;
}
.sticker::before {
  -webkit-text-stroke: 0.21em white;
}
.sticker::after {
  text-shadow: 0.1em 0.09em 0.05em rgba(0, 0, 0, 0.75), -0.07em -0.05em 0.05em rgba(0, 0, 0, 0.75);
  z-index: -2;
}