* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: sans-serif;

  font-family: "Figtree", sans-serif;
}

@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

body {
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background-color: hsl(47, 88%, 63%);
}

.card-container {
  border: 2px solid rgba(99, 99, 99, 0.822);
  border-radius: 20px;
  justify-content: center;
  align-items: center;
  width: 400px;
  padding: 1.25rem;
  background-color: white;
  box-shadow: 10px 10px 0 0;
}

.card-header {
  border-radius: 12px;
  width: 100%;
}

.card-container .card-tag {
  background-color: hsl(47, 88%, 63%);
  color: black;
  max-width: fit-content;
  font-weight: 800;
  padding: 0.5rem 1rem;
  border-radius: 7px;
  display: block;
  margin-top: 1rem;
}

.card-container .card-date {
  color: rgba(37, 36, 34, 0.959);
  font-size: small;
  margin-top: 1rem;
}

/* Heading */
.liner {
  margin-top: 1rem;
  font-size: 22px;
  font-weight: 800;
}
.liner:hover {
  color: hsl(47, 88%, 63%);
}

/* Paragraph */
.paragraph {
  font-size: 1rem;
  color: hsl(0, 0%, 50%);
  margin-top: 1rem;
  line-height: 25px;
  font-weight: 235;
}

/* Footer */
.card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;

  margin-top: 1rem;
}
.logo {
  width: 35px;
}
.card-text {
  font-size: 0.8rem;
  font-weight: 800;
}

@media screen and (width < 1440px) {
  .card-container {
    width: 90vw;
  }
  .card-tag {
    font-size: 0.9rem;
    padding: 0.4rem 0.8rem !important;
  }
  .liner {
    font-size: 18px;
    margin-top: 0.8rem;
  }
  .paragraph {
    font-size: 0.9rem;
    line-height: 20px;
    margin-top: 0.8rem;
  }
}
.attribution {
  position: fixed;
  bottom: 8px;
  text-align: center;
  padding: 2rem;
}
