body {
  margin: 0;
  font-family: 'Georgia', serif;
  background-color: #111;
  color: #eee;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

header {
  background: #000;
  color: #fff;
  padding: 40px 0;
  text-align: center;
  border-bottom: 2px solid #444;
}

header h1 {
  margin: 0;
  font-size: 2.5em;
  letter-spacing: 1px;
}

.tagline {
  margin-top: 10px;
  color: #bbb;
  font-style: italic;
}

main {
  background: #1a1a1a;
  margin-top: 20px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 0 10px #000;
}

.news-article h2 {
  color: #f94;
  margin-bottom: 20px;
}

.news-article p {
  margin-bottom: 20px;
  text-align: justify;
}

footer {
  background: #000;
  text-align: center;
  color: #777;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid #333;
}

.modal {
      display: none;
      position: fixed;
      z-index: 10;
      padding-top: 100px;
      left: 0; top: 0;
      width: 100%; height: 100%;
      overflow: auto;
      background-color: rgba(0,0,0,0.9);
    }
    .modal-content {
      margin: auto;
      display: block;
      max-width: 90%;
      border: 3px solid #e74c3c;
      border-radius: 8px;
    }
    .close {
      position: absolute;
      top: 30px;
      right: 40px;
      color: #fff;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
    }
