#rss-feed-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.noticia__container {
  display: flex;
  flex-direction: column;
  width: 80%;
  padding: 1rem;
  box-shadow: 6px 10px 25px rgba(0, 0, 0, 0.22);
}

.noticia__fonte {
  display: flex;
  align-items: center;
  gap: 2px;
  font-size: .75rem;
  font-weight: 500;
}

.noticia__noticia {
  text-decoration: none;
  color: var(--cor-base-claro);
  font-weight: 600;
  font-size: 1.25rem;
}

.noticia__noticia:hover {
  color: var(--cor-base-medio);
  text-decoration: underline;
}

.noticia__data {
  font-size: 0.75rem;
  font-weight: 500;
}

