@font-face {
  font-family: "Figtree";
  src: url("assets/fonts/Figtree-VariableFont_wght.ttf") format("truetype");
  font-weight: 100 900;
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Figtree";
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: hsl(47, 88%, 63%);
}
body main {
  max-width: 25rem;
  background-color: white;
  padding: 1.3rem;
  border: 1px solid black;
  border-radius: 16px;
  box-shadow: 10px 10px black;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
body main .Illustration {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 16px;
}
body main span {
  width: -moz-fit-content;
  width: fit-content;
  background-color: hsl(47, 88%, 63%);
  border-radius: 5px;
  padding: 8px 10px;
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 150%;
}
body main p:nth-of-type(1) {
  color: black;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 150%;
}
body main h1 {
  font-size: 1.5rem;
  font-weight: 800;
  line-height: 150%;
  cursor: pointer;
  transition: 0.4s;
}
body main h1:hover {
  color: hsl(47, 88%, 63%);
}
body main p:nth-of-type(2) {
  color: hsl(0, 0%, 42%);
  font-size: 1rem;
  font-weight: 500;
  line-height: 150%;
}
body main .author {
  height: 2.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
body main .author img {
  height: 100%;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
body main .author p {
  font-size: 0.875rem;
  font-weight: 800;
  line-height: 150%;
}/*# sourceMappingURL=main.css.map */