* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: hsl(47, 88%, 63%);
  --secondary-one: hsl(0, 0%, 100%);
  --secondary-two: hsl(0, 0%, 50%);
  --secondary-three: hsl(0, 0%, 7%);
}

body {
  font-family: "Figtree", sans-serif;
  font-size: 16px;
  background-color: var(--primary);
}

.content {
  background-color: var(--secondary-one);
  width: 85%;
  margin: 100px auto;
  border-radius: 10px;
  border: 2px solid var(--secondary-three);
  box-shadow: 5px 5px var(--secondary-three);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.content header {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}
.content header img {
  width: 100%;
  display: block;
}
.content main .tag {
  font-size: 0.8rem;
  color: var(--secondary-three);
  background-color: var(--primary);
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 800;
  display: inline-block;
  margin-bottom: 15px;
}
.content main .date {
  font-size: 0.8rem;
  color: var(--secondary-three);
  margin-bottom: 20px;
}
.content main .title-article {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.content main .description {
  color: var(--secondary-two);
}
.content footer {
  display: flex;
  align-items: center;
  gap: 10px;
}
.content footer .footer-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  overflow: hidden;
}
.content footer .footer-img img {
  display: inline-block;
  width: 100%;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
.content footer .footer-name p {
  font-weight: 800;
}

@media screen and (min-width: 376px) {
  .content {
    width: 375px;
    transition: all ease 300ms;
  }
  .content main .title-article {
    transition: all ease 300ms;
    cursor: pointer;
  }
  .content main .title-article:hover {
    color: var(--primary);
  }
  .content:hover {
    box-shadow: 10px 10px var(--secondary-three);
  }
}/*# sourceMappingURL=styles.css.map */