.menu {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.titleBar {
  display: flex;
  flex-direction: row;
}

.title {
  background-color: #ff7b00;
  min-height: 70px;
  height: 70px;
  flex: 1;
  display: flex;
  align-items: center;
  color: blue;
}

.title h1 {
  margin: 0px;
  font-size: 25px;
}

main {
  padding: 15px;
}

.footerBar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  column-gap: 10px;
}

.articles {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.articleEntry>div {
  display: flex;
  flex-direction: column;
  border: 1px solid;
}

.articleEntryTitle {
  display: flex;
  flex-direction: row;
  background-color: orange;
  justify-content: space-between;
  padding: 10px;
}

.articleEntrySummary {
  padding: 10px;
}
