* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Figtree", sans-serif;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: hsl(47, 88%, 63%);
}

.container {
  border: 1px solid hsl(0, 0%, 7%);
  border-radius: 15px;
  box-shadow: 7px 7px 0px 1px hsl(0, 0%, 7%);
  max-width: 375px;
  padding: 20px;
  background-color: hsl(0, 0%, 100%);
}
.imgg {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 0;
}
main {
  margin-top: 20px;
}
header {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.block {
  background-color: hsl(47, 88%, 63%);
  width: fit-content;
  font-weight: 800;
  padding: 6px 12px;
  border-radius: 0.4rem;
  color: hsl(0, 0%, 7%);
}
p {
  color: hsl(0, 0%, 7%);
  font-weight: 500;
  font-size: clamp(0.5rem, 2.5vw, 1rem);
}
.article {
  color: hsl(0, 0%, 42%);
  font-weight: 500;
  font-size: clamp(0.5rem, 2.5vw, 1rem);
  margin-top: 20px;
}

h2 {
  margin-top: 0px;
}
h2 {
  font-weight: 800;
}
h3 {
  font-weight: 800;
  font-size: clamp(0.5rem, 2.5vw, 1rem);
}
footer {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
footer img {
  width: 40px;
  border-radius: 50%;
}
h2:hover {
  color: hsl(47, 88%, 63%);
  cursor: pointer;
}
