* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  list-style: none;
}

header nav ul li a {
  margin: 0 20px;
  font-size: 20px;
  text-decoration: none;
  color: rgb(198, 73, 50);
}

header nav ul li a:hover {
  color: rgb(109, 101, 101);
}

header nav ul li a:active {
  color: rgb(255, 255, 255);
}

header nav ul li a:focus {
  color: rgb(255, 255, 255);
}

header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

header nav ul {
  display: flex;
  flex-direction: row;
  margin: 25px 0px 25px 900px;
}

header h1 {
  font-size: 40px;
  margin: 30px 0;
}

header hr {
  width: 100%;
  border: 2px solid #cec09b;
}
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f5f5;
}

.main-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr;
  gap: 0px 0px;
  grid-template-areas:
    "articles Filter";
}

.articles {
  grid-area: articles;
}

.Filter {
  grid-area: Filter;
}

#articlesContainer {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 400px;
}

.article {
  padding: 20px;
  margin-bottom: 20px;
  max-width: 800px;
  width: 100%;
  display: flex;
  justify-content: space-around;
  align-items: baseline;
}

.article img {
  max-width: 300px;
  height: auto;
  border-radius: 8px;
  margin-right: 20px;
}

.article-content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 10px 0;
}

.article h2 {
  font-size: 34px;
  margin-bottom: 30px;
  color: #b01c1c;
}

.article p {
  font-size: 20px;
  margin-bottom: 8px;
  padding: 10px;
}

.article p a {
  color: #b01c1c;
  text-decoration: none;
  font-weight: bold;
}

.article-info {
  font-size: 14px;
  color: #555;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  margin-right: 200px;
}

.article-info p {
  margin: 0;
  margin-bottom: 10px;
}


.Filter {
  display: flex;
  justify-content: center;
  margin: 10px 200px;
  float: right;
  width: 250px;
  height: 1000px;
  border: 3px solid #cec09b;
}
footer {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 20px 10%;
}

footer hr {
  margin: 20px 0;
  width: 100%;
  border: 2px solid #cec09b;
}