html {
  background: #c0c0c0;
  background-image: url("/assets/img/microblog-bg.jpg");
  background-size: cover;
}

body {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem;
  font-family: "Pixelated MS Sans Serif", Arial;
  overflow: hidden;
}

.nav { 
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.desktop-icon a {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-decoration: none;
}

#main-window {
  flex: 1;
  max-width: 1600px;
}

.window-body {
  height: 85vh;
  overflow-y: scroll;
  scrollbar-color: #888888 #c0c0c0;
  scrollbar-width: thin;
  padding-right: .5rem;
}

article {
  margin: 1.25rem 0;
}

button { margin: 0 .25rem; }

#img-display {
  display: none;
  position: absolute;
  bottom: 120px;
  left: 15px;
  max-height: 300px;
  max-width: 300px;
  width: fit-content;
  overflow: none;
}

#img-display img {
  max-width: 260px;
  max-height: 260px;
  padding: 12px;
  text-align: center;
}

h2 { font-size: 1.5rem; }
h2:first-of-type { margin-top: 0; }