h1,
h2,
h3,
p {
  margin: 0;
  padding: 0;
}

ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
}

button {
  border: none;
  cursor: pointer;
}

img {
  display: block;
  height: auto;
  width: 100%;
  max-width: 100%;
}

section {
  width: 100%;
}

body {
  font-family: "Inter", sans-serif;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 15px;
}

.header-nav-list {
  display: flex;
  gap: 25px;
}

.header-nav-link {
  position: relative;
  color: rgb(0, 0, 0);
  border-bottom: 1px solid transparent;
  border-radius: 2px;
  padding-bottom: 2px;
  transition: all 200ms ease;
  font-size: 19px;
}
.header-nav-link:hover::before {
  bottom: 0;
  height: 100%;
}
.header-nav-link::before {
  content: "";
  background-color: hsla(0, 61%, 58%, 0.75);
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  height: 8px;
  z-index: -1;
  transition: all 0.3s ease-in-out;
}

.header-search-input {
  padding: 10px 30px;
  border-radius: 50px;
  outline: none;
  border: 1px solid black;
}

.hero {
  position: relative;
  margin-top: 20px;
  background-image: url("./src/images/background.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 200px 0;
  border-radius: 20px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  z-index: 1;
  border-radius: 20px;
}

.hero-text-container {
  position: relative;
  z-index: 2;
  text-align: center;
  color: rgb(255, 255, 255);
  padding: 6px 0;
}

.articles-title,
.featured-title {
  text-align: center;
  margin-top: 30px;
  font-size: 40px;
  font-weight: 500;
}

.articles-cards {
  margin-top: 20px;
  padding: 0 150px;
  display: flex;
  justify-content: space-around;
}

.articles-card {
  position: relative;
  transition: all 300ms ease;
  opacity: 0.9;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.articles-card:hover {
  transform: scale(1.05);
  opacity: 1;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.article-image {
  width: 500px;
  height: 300px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  filter: brightness(0.6) blur(2px);
  transition: all 300ms ease;
}
.articles-card:hover .article-image {
  transform: scale(1.08);
  filter: brightness(0.75) blur(2px);
}

.article-text-container {
  position: absolute;
  bottom: 25%;
  right: 0;
  left: 0;
  padding: 20px 15px;
  text-align: center;
  z-index: 3;
  color: rgb(222, 222, 222);
}

.article-read-more {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 0, 0);
  padding: 0 6px;
}

.article-desc {
  margin-bottom: 20px;
}

.featured-topic-content {
  padding: 20px 20px;
  margin: 0 auto;
  margin-top: 30px;
  max-width: 18%;
  border-radius: 30px;
  border: 1px solid rgb(175, 175, 175);
  transition: border 300ms ease;
}

.topic-content-title {
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  margin: 0 0 5px;
}

.topic-content-subtitle {
  text-align: center;
  font-weight: 600;
  margin: 13px 0 0 5px;
}

.topic-detailed-description,
.topic-description {
  text-align: center;
  margin: 0 5%;
}

.topic-content-btn {
  display: block;
  margin: 0 auto;
  margin-top: 30px;
  padding: 10px 20px;
  border: 1px solid rgb(0, 0, 0);
  border-radius: 5px;
  transition: all 300ms ease;
}
.topic-content-btn:hover {
  background-color: rgb(255, 124, 124);
  border: 1px solid transparent;
}

.topic-content-btn-link {
  color: rgb(0, 0, 0);
}/*# sourceMappingURL=index.css.map */