@import url("https://fonts.googleapis.com/css2?family=Rajdhani:wght@300;400;500;600;700&display=swap");
* {
  margin: 0;
  padding: 0;
  font-family: "Rajdhani", sans-serif;
}
body {
  background-image: linear-gradient(45deg, black, rgb(0, 53, 0));
  width: 100vw;
}
nav {
  display: flex;
  align-items: center;
  width: 100vw;
  justify-content: center;
  background-image: linear-gradient(45deg, black, rgb(36, 96, 9));
  border-bottom: 2px solid rgb(0, 68, 0);
  position: fixed;
  z-index: 20;
  top: 0;
}
nav img {
  width: 300px;
  padding: 20px;
}
nav a {
  padding: 10px;
  color: white;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  transition: 0.2s ease-in-out;
}
nav a:hover {
  color: rgb(111, 111, 111);
  text-decoration: underline;
}

.body {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: -1;
  margin-top: 200px;
}
.body h2 {
  color: white;
  font-size: 60px;
  font-weight: 300;
  margin-top: 20px;
}
.body h3 {
  /* margin-top: 20px; */
  margin-bottom: 50px;
  color: white;
  font-size: 25px;
  font-weight: 300;
}

#banner {
  margin-top: 20px;
  width: 800px;
  height: 400px;
  background-color: #9dff2d;
  border: 1px solid #d6ffca;
  box-shadow: 10px 10px 20px 8px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  transition: 0.2s ease-in-out;
}
#banner img {
  max-width: 100%;
  max-height: 100%;
}

/* Search bar styles */
#search-bar {
  margin-top: 40px;
  width: 400px;
  height: 20px;
  padding: 10px;
  font-size: 18px;
  border: none;
  border-radius: 4px;
}
#search-button {
  height: 40px;
  padding: 0 20px;
  font-size: 16px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
/* Introduction section styles */
#introduction-section {
  text-align: center;
  margin: 50px auto;
  width: 600px;
  color: white;
}
h1 {
  font-size: 28px;
  margin-bottom: 20px;
}
p {
  font-size: 18px;
  line-height: 1.5;
}
/* Search results styles */
#search-results {
  color: white;
  margin-top: 50px;
  text-align: center;
}
#search-results ul {
  list-style: none;
  padding: 0;
}
#search-results li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Featured articles section styles */
#featured-articles {
  color: white;
  text-align: center;
  margin: 50px auto;
  width: 800px;
}
#featured-articles h2 {
  font-size: 24px;
  margin-bottom: 20px;
  font-size: 60px;
}
.article {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
.article img {
  width: 300px;
  height: 200px;
  object-fit: cover;
}
.article-details {
  width: calc(100% - 320px);
  padding: 0 20px;
  text-align: left;
}
.article-title {
  font-size: 20px;
  margin-bottom: 10px;
}
.article-date {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
}
.article-description {
  font-size: 16px;
  line-height: 1.5;
}

footer {
  background-color: #000;
  color: #fff;
  padding: 20px;
  text-align: center;
}
.social-media-icons {
  list-style: none;
  padding: 0;
  margin-top: 10px;
}
.social-media-icons li {
  display: inline-block;
  margin: 0 5px;
}
.social-media-icons a {
  color: #fff;
  font-size: 24px;
}
small,small a{
    color: rgb(53, 248, 53);
}
