body {
  display: flex;
  flex-direction: column;
  background: url("https://bettysgraphics.neocities.org/images/backgrounds/pattern%20525.gif");
  color: black;
  font-family: "Comic Sans MS";
  justify-content: center;
}

.content {
  display: flex;
  flex-direction: row;
  padding: 16px;
  justify-content: center;
}

.toolbar {
  background-color: blue;
  padding: 16px;
}

.sidebarLeft {
  display: flex;
  background-color: green;
  flex-direction: column;
  padding: 16px;
}

.text {
  background-color: #FF69B4;
  display: flex;
  flex-direction: column;
  text-align: center;
  padding: 24px;
}

.sidebarRight {
  display: flex;
  flex-direction: column;
  background-color: yellow;
  padding: 16px;
}