.announcements-container {
  display: flex;
  justify-content: space-evenly;
}

@media only screen and (max-width: 750px) {
  .announcements-container {
    flex-direction: column;
  }

  .hide-on-mobile {
    display: none;
  }
}