* {
  font-family: 'Figtree', sans-serif;
  list-style-type: none;
  text-decoration: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: hsl(47, 88%, 63%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  width: 100%; 
}

.container {
  background-color: white;
  border-radius: 20px;
  box-shadow: 10px 11px 0px black;
  border: 1px solid black;
  display: flex;
  flex-direction: column;
  max-width: 350px;
  overflow: hidden;
  width: 400px;
  height: auto;
  padding: 20px;
  gap: 13px;
}

.container img {
  width: 100%;
  border-radius: 10px;
}

.category {
  background-color: hsl(47, 88%, 63%);
  color: black;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 4px;  
  width: fit-content;
}

.content {
  color: hsl(0, 0%, 42%);
  font-size: 15px;
  font-weight: 500;
}

h1 {
  font-size: 22px;
  font-weight: 950;
  color: hsl(0, 0%, 7%);
  line-height: 1.2;
  margin: 10px 0;
}

.description {
  font-size: 15px;
  font-weight: 500;
  color: hsl(0, 0%, 42%);
  line-height: 1.5;
  margin-bottom: 15px;
}

.avatar {
  display: flex;
  align-items: center;
  gap: 15px;
}

.avatar img {
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

h2 {
  font-size: 15px;
  font-weight: 800;
  color: hsl(0, 0%, 7%);
  display: flex;
}

.attribution {
  font-size: 11px;
  text-align: center;
  margin-top: 20px;
}

.attribution a {
  color: hsl(228, 45%, 44%);
}

.attribution a:hover {
  color: hsl(228, 45%, 64%);
}

@media (max-width: 500px) {
  .container {
    width: 100%;
    padding: 15px;
  }
}




  
  