/* Attribution */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&display=swap");

.attribution {
  font-size: 15px;
  text-align: center;
}
.attribution a {
  color: hsl(228, 45%, 44%);
}

:root {
  --Yellow: hsl(47, 88%, 63%);
  --White: hsl(0, 0%, 100%);
  --Gray-500: hsl(0, 0%, 42%);
  --Gray-950: hsl(0, 0%, 7%);
}

body {
  background: var(--Yellow);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

section {
  background: var(--White);
  max-width: 320px;
  padding: 22px 22px 5px 22px;
  border-radius: 20px;
  box-shadow: 9px 9px 2px var(--Gray-950);
  margin-bottom: 30px;
  border: 1px solid var(--Gray-500);
  font-family: "Figtree", sans-serif;
}

.blet {
  display: flex;
  justify-content: center;
}

.one {
  border-radius: 10px;
}

.learn {
  display: inline-block;
  color: var(--Gray-950);
  background-color: var(--Yellow);
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 5px;
  margin-top: 20px;
  font-size: 12px;
}

article {
  color: var(--Gray-500);
}

.author {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 7px;
  margin: 20px 0px 20px 0px;
}

.two {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  object-fit: fit;
  border: 2px solid white;
}

span {
  font-weight: 700;
  font-size: 13px;
}
h1 {
  font-weight: 800;
  font-size: 24px;
}
@media (max-width: 375px) {
  section {
    max-width: 260px;
  }
  p {
    font-size: 12px;
  }
  h1 {
    font-size: 17px;
  }
  article {
    font-size: 13px;
  }

  .two {
    font-size: 14px;
  }
}
