body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #6b93cc;
}

/* HEADER */

.header-navigation {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: darkblue;
  color: white;
  padding: 10px 20px;
}

.website-logo img {
  width: 110px;
  height: auto;
  display: block;
}

.header-navigation ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header-navigation li {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.header-navigation a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.header-navigation a:hover {
  color: #6b93cc;
  background-color: #e6d5c3;
  transform: scale(1.15);
}

.header-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
  background: hotpink;
  color: white;
  flex-wrap: wrap;
}

.header-card img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
}

.text-header-card {
  max-width: 500px;
}

/* FEATURE */
.feature {
  background: #e6d5c3;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
}

/* GRID */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 20px;
}

/* CARDS */
.card {
  background: white;
  padding: 10px;
  border-radius: 10px;

  display: flex;
  flex-direction: column;
  justify-content: space-between;

  transition: transform 0.2s;

  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.card:hover {
  transform: scale(1.05);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

/* TYPOGRAPHY */
h1 {
  margin-bottom: 10px;
}

p {
  margin: 0;
}

/* TABLET */
@media (min-width: 600px) {
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* DESKTOP */
@media (min-width: 1024px) {
  .news-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* MOBILE HEADER FIX */
@media (max-width: 600px) {
  .header-card {
    flex-direction: column;
    text-align: center;
  }

  .header-card img {
    width: 100%;
    height: 200px;
  }
}