/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

#flex {
  display: flex;
  gap: 10px;
}

aside {
  width: 250px;
  background: rgba(255,255,255,0.1);
  padding: 10px;
}

main {
  flex: 1;
}

.post {
  background: rgba(0,0,0,0.2);
  padding: 15px;
  margin-bottom: 20px;
}

#mainBox {
  display: flex;
  gap: 20px;
}

/* menu de imagens */
.imageMenu {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

/* conteúdo */
.contentArea {
  flex: 1;
}

.menuItem {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}

.menuItem img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.menuItem span {
  font-size: 14px;
}

.verticalText {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 12px;
}

.spin {
  animation: girar 5s linear infinite;
}

@keyframes girar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.menuItem img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}

.post {
  background: rgba(0,0,0,0.3);
  padding: 15px;
  margin-bottom: 15px;
  border: 1px solid pink;
}