section#main {
    height: calc(100vh - 50vh);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #fff;
}

#main h1 {
    color: orange;
    margin-top: 175px;
    font-size: 3rem;
    margin-bottom: 1rem;
}

#main h2 {
    color: black;
    font-style: italic;
    font-weight: bold;
}

#main hr {
    border: none;
    width: 550px;
    height: 5px;
    background-color: black;
    border-radius: 10px;
    margin-bottom: 20px;
}

.twitter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px;
}

.twitter-tweet {
  max-width: 300px;
  flex: 1;
  margin: 0;
  padding: 10px;
}

.news-info {
  color: white;
  font-size: 2rem;
  text-align: center;
  margin-top: 40px;
}

.news-info .highlight {
  font-weight: bold;
  color: orange;
  text-decoration: underline;
  font-size: 2rem;
}

@media (max-width: 1200px) {
  .twitter-tweet {
    margin: auto;
  }

  .twitter-posts {
    display: block;
  }
}
