.forum-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 20px;
}

.forum-wrapper-pink {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  box-sizing: border-box;
  padding: 20px;
}

.forum-box {
 overflow-y: auto;
  width: 1500px;
  max-width: 90vw;
  height: 70vh;
  background-color: #fdf3d7;
  border: 5px solid #a85a2a;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 50px;
}

.forum-box-pink {
  box-sizing: border-box;
  width: 1500px;
  max-width: 90vw;
  height: 70vh;
  background-color: #f2e6eb;
  border: 30px solid transparent;
  border-image: url(/Pixels/starry.gif) 30 round;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  padding: 50px;
}

.forum-main {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
}

.about-img {
  float:left;
  width: 200px;
  height: auto;
  margin: 0 12px 8px 0;
  image-rendering: pixelated;
}

.bottom-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: max-content;
  margin: 15px auto 0 auto;
}

.bottom-nav img{
  height: 40px;
  width: auto;
  display: block;
}

.bottom-nav a img:hover {
  transform: translateY(-4px);
}

.image-wrapped {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 15px;
}

.image-wrapped img {
  width: 150px;
  flex-shrink: 0;
  justify-content: center;
}

.image-wrapped p {
  flex: 1;
  margin: 0;
}