@font-face {
    font-family: "Pixel Operator";
    src: url("https://aetherie-99.neocities.org/fonts/Pixel%20Operator/PixelOperator.ttf") format("truetype");
}

:root {
    --title-font-size: 7;
    --bg-image: url('https://aetherie-99.neocities.org/bg.png');
    --side-image: url('https://aetherie-99.neocities.org/364bbefc.png');
    --box-bg: #f5ecdf;
    --background: #f5e2df;
    --main-text-color: #cf3480;
    --muted-text-color: #cf347f;
    --border-color: #EF4690;
    --border-box-color: #F76AA8
    --pink: #ffc8ea;
    --preloader-bg: #F76AA8;      
}

#hotpink { background-color: #cf3480; }

/* BASE STYLING */
*, *::before, *::after {
    box-sizing: border-box;
}

body, html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.15;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg-image) top / cover no-repeat;
    font-family: "Pixel Operator";
    color: hotpink;
    font-size: 16px;
    scrollbar-color: var(--main-text-color) var(--background);
}

blockquote {
    border-left: 1px solid;
    padding-left: 0.5em;
    margin-left: 1em;
    font-style: italic;
}

button {
    transition: all .3s ease-in-out;
    cursor: pointer;
    padding: 0;
    margin: 0;
}

button:hover, .active {
    filter: brightness(140%);
}

mark {
    background-color: var(--main-text-color);
    color: var(--background);
    padding: 0 5px;
    border-radius: 2px;
}

figcaption {
    font-style: italic;
    font-size: smaller;
}

a {
    color: var(--main-text-color);
}

a:hover {
    filter: brightness(130%);
}

ul {
    margin: 0;
}

hr {
    border: 1px solid var(--muted-text-color);
}

code {
    background-color: var(--main-text-color);
    color: var(--background);
    padding: 0 3px;
    border-radius: 3px;
}

.img-fluid {
    max-width: 25rem;
    height: auto;
}

p {
    margin: 5px 0 10px 5px;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0.2em;
    font-family: Wildnote;
}

::selection {
    background-color: var(--muted-text-color);
    color: var(--background)
}

/* SCROLLBAR */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
	position: fixed;
	right: 12px;
	z-index: 1;
}

::-webkit-scrollbar-track {
	box-shadow: none;
	border-radius: 0;
	background-color: var(--background);
}

.post ::-webkit-scrollbar-track {
	border-left: 0 solid var(--main-text-color);
}

::-webkit-scrollbar-thumb {
	background: var(--muted-text-color);
	border-radius: 0;
}

/* WRAPPERS */
.wrapper {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    margin: 0 auto 5vh auto;
    width: 50vw;
    padding: 15px;
    gap: 2em;
}

.side-wrapper {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    width: 15em;
    gap: 2em;
}

/* BOXES & SIDEBAR */
.side-wrapper>div, .main {
    background-color: var(--box-bg);
    border: 2px solid var(--border-color);
    box-shadow: 0.5em 0.5em var(--border-box-color);
    padding: 1em;
    border-radius: 5px;
}

.main {
    flex-grow: 1;
}

.side p {
    text-align: center;
    margin: 0.5em;
}

#side-img {
    height: 11em;
    max-width: 100%;
    background: var(--side-image) center / contain no-repeat;
    margin: 0.5em auto;
}

.sidenav {
  width: 100px; /* Set the width of the sidebar */
  position: fixed; /* Fixed Sidebar (stay in place on scroll) */
  z-index: 1; /* Stay on top */
  top: 0; /* Stay at the top */
  left: 0;
  background-color: #fff7f2
  overflow-x: hidden; /* Disable horizontal scroll */
  padding-top: 20px;
}

/* The navigation menu links */
.sidenav a {
  padding: 16px 8px -30px 16px;
  text-decoration: none;
  font-size: 25px;
  color: #818181;
  display: block;
}

/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
  color: #f1f1f1;

/* Style page content */
.main {
  margin-left: 0px; /* Same as the width of the sidebar */
  padding: 0px 5px;
}

/* On smaller screens, where height is less than 450px, change the style of the sidebar (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}

/* NAVLINKS */
#navlinks {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    align-content: flex-start;
}

#navlinks a {
    background-color: var(--main-text-color);
    color: var(--background);
    padding: 8px;
    margin: 5px;
    border-radius: 20px;
    text-decoration: none;
}

/* BADGES */
#badge-img {
    display: grid;
    margin: auto auto;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    column-gap: 6px;
    grid-row-gap: 6px;
    align-items: center;
    justify-content: center;
}

  /* MOBILE STYLING */
  @media only screen and (max-width: 768px) {
      .wrapper {
          flex-direction: column;
          width: 100%;
          padding: 0;
      }

      audio, audio::-webkit-media-controls-panel {
          max-width: 100%;
          background-color: #fc98b8;
}

      audio::-webkit-media-controls-play-button {
         background-color: #fcccdb;
        border-radius: 50%;
}

      audio::-webkit-media-controls-mute-button {
          background-color: #fcccdb;
          border-radius: 50%;
}

      #flag {
          width: 50vw;
      }

      figure {
          margin: 0;
      }

      .img-fluid {
          max-width: 100%;
      }

      .side-wrapper, .main {
          width: 80vw;
          margin: 0 auto;
      }

      #title {
          width: 100vw;
          font-size: calc(var(--title-font-size) * 1.6);
          margin: 3vh auto;
      }
  }
  
#statuscafe {
    padding: .5em;
    background-color: #fff7f2;
    border: 3px dashed #ff94b4;
    border-radius: 12px;
    padding: 5px;
    
}
#statuscafe-username {
    margin-bottom: .5em;
}
#statuscafe-content {
    margin: 0 1em 0.5em 1em;
}

  