<style>
  /* Cursor */
  * {cursor: url(https://cur.cursors-4u.net/food/foo-7/foo631.cur), auto !important;}

  /* Font-face */
  @font-face {
    font-family: "Nintendo DS BIOS";
    src: url("https://fuwaka.neocities.org/font/Nintendo-DS-BIOS.ttf") format("truetype");
  }
 
body {
  background-color: #F9F5F3;
  background-image: url('https://i.imgur.com/bNk12OW.png');
  margin: 0px;
  color: #3d2120;
}

/* MAIN WRAPPER — FULL WIDTH */
#all {
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

#side {
  text-align: center;
  height: auto;
  width: 150px;
  flex-shrink: 0;
  overflow: auto;
  background-color: #fff;
  padding: 10px;
  border-width: 0px 1px 0px 1px;
  border-style: solid;
  border-color: #3d2120;
}
 
#sideicon {
  border: 2px solid #28bf2b;
}
 
.sideheader {
  font-weight: normal;
  margin: 5px 0px 0px 5px;
  font-size: 20px;
  font-family: 'Nintendo DS BIOS';
}
 
#aboutheader {
  margin: 0px 0px -5px 0px;
}
 
#about {
  text-align: justify;
  margin: 0px 0px 10px 0px;
  letter-spacing: 1px;
  font-size: 20px;
  font-family: 'Nintendo DS BIOS';
}

.divider {
  border-bottom: 1px dashed #3d2120;
}
 
ul {
  padding: 0;
  margin: 0;
}
 
li {
  list-style-type: none;
  font-size: 20px;
  margin: 5px 0;
  font-family: 'Nintendo DS BIOS';
}
 
#main {
  flex: 1;
  min-width: 0;
  height: auto;
  background-color: #fff;
  overflow-x: hidden;
  font-family: 'Nintendo DS BIOS';
  font-size: 22px;
  line-height: 1.2;
}

#header {
  background-image: url('https://i.postimg.cc/bJdtCcrY/IMG_2781.gif');
  background-color: #272e24;
  height: 70px;
  border-bottom: 1px solid #6b2d2b;
}
 
#header h1 {
  margin: 0px;
  font-weight: normal;
  color: #fff;
  font-size: clamp(30px, 10vw, 70px);
  line-height: 1.2;
  text-transform: uppercase;
  font-family: 'Special Elite', serif;
}
 
.subheader {
  font-weight: normal;
  font-size: 30px;
  margin: 0px 0px -5px 0px;
  padding: 10px 10px 0px 10px;
  font-family: 'Special Elite', serif;
}
 
.postcontainer {
  padding: 10px;
  position: relative;
}
 
.iconanddatecontainer {
  height: auto;
  font-size: 25px;
  border-bottom: 2px dashed #28bf2b;
  font-family: 'Nintendo DS BIOS';
  line-height: 1;
}
 
.icon {
  border: 1px solid #3d2120;
  max-width: 100%;
  height: auto;
}
 
.posttext {
  padding: 0px 15px;
  letter-spacing: 1px;
  text-align: justify;
  margin-top: -4px;
}
 
.date {
  margin-top: 10px;
  text-align: right;
}
 
a {
  text-decoration: none;
  color: #28bf2b;
}
 
a:visited { color: #28bf2b; }
a:hover { font-style: italic; font-weight: bold; }
a:active { font-weight: bold; font-style: italic; }
 
::-webkit-scrollbar {
  width: 5px; 
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #28bf2b;
}
 
#bg {
  position: fixed;
  bottom: 0px;
  right: 0;
  opacity: 0.9;
}

img {
  max-width: 100%;
  height: auto;
}

#credit {
  font-size: 12px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 2;
}
  
#statuscafe {
  padding: 0em;
  background-color: azure;
  border: 1px solid midnightblue;
}
#statuscafe-username {
  margin-bottom: .3em;
  font-size: 20px;
  font-family: 'Nintendo DS BIOS';
}
#statuscafe-content {
  margin: 0 1em 0.5em 1em;
  font-size: 20px;
  font-family: 'Nintendo DS BIOS';
}

/* ------------------------------------------------ */
/*                 MOBILE FIXES                     */
/* ------------------------------------------------ */

@media (max-width: 600px) {

  #all {
    flex-direction: column;
  }

  #side {
    width: 100%;
    order: -1; /* sidebar moves above the post — remove if not wanted */
  }

  #main {
    width: 100%;
  }

  .posttext {
    padding: 10px !important;
  }

  .date {
    text-align: left;
    margin-top: 10px;
  }

  .iconanddatecontainer {
    height: auto;
  }
}