@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Signika+Negative:wght@300&display=swap");
* {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
  font-family: "Bebas Neue", cursive;
  font-family: "Signika Negative", sans-serif;
}
body {
  display: flex;
  flex-direction: column;
  /* margin: 1rem 0; */
}
.heading-container {
  background-color: #068da9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1rem;
  /* align-items: center; */
}
.container {
  min-height: 100vh;
}

.news-heading {
  padding-top: 1rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
}
.category {
  text-align: center;
  letter-spacing: 3px;
  margin: 16px 0px;
  text-shadow: 2px 2px 3px #000000;
}
.news-heading span {
  padding: 10px;
  letter-spacing: 2px;
  border-radius: 10px;
}
.span3 button {
  padding: 0.5rem;
  cursor: pointer;
  font-weight: bold;
}
a {
  text-decoration: none;
  /* color: white; */
  color: black;
}
.news_feed-details {
  padding: 0 2rem;
}

.topics {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-around;
  margin-bottom: 10px;
}
.topics span {
  background-color: #ff6969;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
  letter-spacing: 1.5px;
}
i:hover {
  cursor: pointer;
}
.fa-solid {
  color: red;
}
i {
  color: black;
}
.main-container {
  display: flex;
  justify-content: center;
  width: 100%;
  margin: 0px auto;
}
.data {
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  margin: 2rem;
}
.add-news {
  margin-top: 20px;
  /* margin: 2rem; */
}
img {
  max-width: 100%;
  height: 300px;
  border-radius: 5px;
}
.news-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 0px 20px;
  /* border: 2px solid red; */
}
.news-detail {
  display: flex;
  justify-content: space-between;
}
.news-detail h6 {
  padding-right: 10px;
}
.main-container {
  padding: 2rem;
}
/* .active{
    background-color:aliceblue;
} */
.news_feed-main {
  font-size: 1.5rem;
  font-weight: bold;
  text-shadow: 2px 2px 3px #cd1818;
}
/* ******************************FOOTER CSS***************************************************************** */
.news_feed-footer {
  background-color: black;
  color: white;
}
.news_feed-footer_top {
  display: flex;
  flex-direction: row;
  padding: 1rem;
  justify-content: space-between;
}
.news_feed-footer_top p {
  cursor: pointer;
}
.news_feed-footer_icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem;
}
.news_feed-footer_icons i {
  color: white;
  font-size: 2rem;
}
.news_feed-footer_icons i:nth-of-type(1) {
  color: rgb(228, 76, 102);
  /* background-color: red; */
}
.news_feed-footer_icons i:nth-of-type(2) {
  color: blue;
}
.news_feed-footer_icons i:nth-of-type(3) {
  color: skyblue;
}
.news_feed-footer_icons i:nth-of-type(4) {
  color: red;
}
.news_feed-footer_copyright {
  text-align: center;
  padding: 1rem;
}
.readMore {
  color: #068da9;
}
/* **************FOR SCREEN******************************* */
@media only screen and (max-width: 1000px) {
  .news-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 700px) {
  .news-container {
    grid-template-columns: repeat(1, 1fr);
  }
  .news-heading {
    flex-direction: column;
  }
  .news-heading span {
    margin: 10px;
  }
}
