/* Landing Page CSS*/
body {
    background-color: red; 
    color: black;
    font-size: 24px;
}

.navbar {
          display: flex;

          justify-content: space-between;

          gap: 10px;

          align-items: center;

          background-color: rgb(0, 0, 0);

          padding: 15px 30px;
}

#article-selector {
    position: fixed;
    top: 150px;
    left: 10px;
    background-color: white;
    border: 2px solid black;
    padding: 15px;
    width: 120px;
}

#article-selector a {
    color: black;
    text-decoration: underline;
}


#center-column {
    width: 50%; 
    margin-left: 25%; 
    background-color: lightgray;
    min-height: 1500px; 
    border-left: 5px solid black;
    border-right: 5px solid black;
    padding-bottom: 50px;
}


button {
  background: #d22323;
  color: #ffffff;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s;
}


#search-bar a {
    color: lightblue; 
}


.news-box {
    background-color: white;
    border: 2px solid black;
    margin: 30px;
    padding: 30px;
    line-height: 1.5; 
}

img {
    width: 90%; 
    border: 3px solid black;
}

.read-more-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: white;
    color: black;
    text-decoration: none;
    border: 3px solid black;
    font-weight: bold;
    text-align: center;
}

.read-more-btn:hover {
    background-color: black;
    color: white;
}

#recommended-articles {
    position: fixed;
    top: 150px;
    right: 50px; /* Aligned to the right side */
    background-color: white;
    border: 2px solid black;
    padding: 15px;
    width: 150px;
}

#recommended-articles a {
    color: black;
    text-decoration: underline;
}

.footer {
          background-color: rgb(129, 29, 29);
          color: white;
          text-align: center;
          padding: 15px 30px;
          font-size: 14px;
}
