body {
  font-family: Arial, sans-serif;
  background-color: #f7f7f7;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.card-container {
  background-color: #ffe14a;
  padding: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* border-radius: 10px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 1000px;
}

.card {
  background-color: #fff;
  width: 300px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  padding: 20px;
}

.card-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.tag {
  background-color: #ffd600;
  color: hsl(0, 0%, 7%);
  font-weight: bold;
  font-size: 14px;
  padding: 4px 8px;
  
}

.date {
  color: #888;
  font-size: 12px;
}

.card-title h3 {
  font-size: 20px;
  color: #333;
  margin: 10px 0;
  font-weight: 800;
}

.card-description p {
  color: #555;
  font-size: 16px;
  line-height: 1.5;
}

.card-footer {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.card-footer img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-right: 10px;
}

.author {
  color: #333;
  font-size: 16px;
  font-weight: bold;
}
