body {
  margin: 0;
  padding: 0;
  font-size: min(4vw, 22px);
  height: 100vh;
  overflow: auto;
}

.right-bar {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.postit {
  height: fit-content;
  width: 60vw;
  margin-top: 0%;
  margin-left: 5%;
  margin-bottom: 0%;
}
.postit:hover {
  cursor: default;
  filter: drop-shadow(10px 10px 20px rgba(255, 255, 255, 0));
}
.float-left {
  margin-left: 5%;
  float: left;
  text-shadow: 1.5px 1.5px black;
}
.float-right {
  margin-right: 5%;
  float: right;
  text-shadow: 1.5px 1.5px black;
}
.bio {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 4%;
}
.bio img {
  max-width: 90%;
  aspect-ratio: 1;
  border-radius: 100%;
  box-shadow: 2px 2px 3px black;
}
.bio .img-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (max-width: 768px) {
  .bio {
    flex-direction: column;
  }
  .bio img {
    margin-bottom: 8%;
    width: 55%;
  }
  body {
    overflow: visible;
  }
  .postit {
    height: fit-content;
    width: 90vw;
    margin-top: 1.5%;
    padding-bottom: 0;
  }
  .right-bar {
    justify-content: initial;
  }
  .mobilenavbar {
    display: flex;
  }
}
