body {
  background-color: hsl(47, 88%, 63%);
  font-family: "Figtree", sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh; 
  margin: 0;     
}

.container {
  background-color: hsl(0, 0%, 100%);
  border-radius: 40px;
  outline: 1px solid black;
  width: 450px;
  padding: 15px;
  box-sizing: border-box;
  box-shadow: 8px 8px 0 0 #000;
}

.classification {background-color: hsl(47, 88%, 63%);
font-weight: bold;
padding: 8px;
border-radius: 5px;
display: inline-block;
margin-left: 10px;}

h1 {color: hsl(0, 0%, 7%);
text-align: left;
padding: 5px;
margin-left: 10px;}

p {font-size: 16px;
padding: 5px;
margin-left: 10px;}

h1:hover {color: hsl(47, 88%, 63%);}

.publish-date {color: hsl(0, 0%, 7%);
font-size: 14px;
padding: 5px;
margin-left: 10px;}

.description {color: hsl(0, 0%, 42%)}

.design {
  display: block;
  margin: auto;  
  width: 95%;
  height: 80%;
  border-radius: 40px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 20px;
}

.author-info {
  margin-left: 0; /* also reset margin to 0 */
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-pic {
  width: 50px;
  height: 50px;
  object-fit: cover;
  margin-left: 10px;
}

.author-info figcaption {
  font-weight: bold;
  color: hsl(0, 0%, 7%);
  font-size: 16px;
}

p, h1, .publish-date {
  margin-top: 10px;   
  margin-bottom: 10px; 
  padding-top: 0;   
  padding-bottom: 0;
}